diff --git a/CHANGELOG.md b/CHANGELOG.md index 126f881c..0b676f63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.10.42] = 2025-02-24 + +### Changed + +- Poverty rate reads from HAPI dataset + ## [0.10.41] = 2025-02-20 ### Changed diff --git a/requirements.txt b/requirements.txt index ca3d9d9c..8605c17c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -77,7 +77,7 @@ hdx-python-utilities==3.8.4 # hdx-python-scraper humanize==4.12.1 # via frictionless -identify==2.6.7 +identify==2.6.8 # via pre-commit idna==3.10 # via @@ -146,9 +146,9 @@ pockets==0.9.1 # via sphinxcontrib-napoleon pre-commit==4.1.0 # via hapi-pipelines (pyproject.toml) -psycopg==3.2.4 +psycopg==3.2.5 # via hdx-python-database -psycopg-binary==3.2.4 +psycopg-binary==3.2.5 # via psycopg pyasn1==0.6.1 # via @@ -218,7 +218,7 @@ rfc3986==2.0.0 # via frictionless rich==13.9.4 # via typer -rpds-py==0.23.0 +rpds-py==0.23.1 # via # jsonschema # referencing diff --git a/src/hapi/pipelines/database/conflict_event.py b/src/hapi/pipelines/database/conflict_event.py index 34f3db62..6ad4b51e 100644 --- a/src/hapi/pipelines/database/conflict_event.py +++ b/src/hapi/pipelines/database/conflict_event.py @@ -20,5 +20,5 @@ def populate(self) -> None: self.hapi_populate( "conflict-event", DBConflictEvent, - end_resource=29, + end_resource=None, ) diff --git a/src/hapi/pipelines/database/hapi_dataset_uploader.py b/src/hapi/pipelines/database/hapi_dataset_uploader.py index 7477160d..6e96ea19 100644 --- a/src/hapi/pipelines/database/hapi_dataset_uploader.py +++ b/src/hapi/pipelines/database/hapi_dataset_uploader.py @@ -41,6 +41,7 @@ def hapi_populate( name_suffix: str, hapi_table: Type[Base], end_resource: Optional[int] = 1, + max_admin_level: int = 2, ): log_name = name_suffix.replace("-", " ") pipeline = [] @@ -60,7 +61,7 @@ def hapi_populate( hxltag_to_header = invert_dictionary(next(rows)) for row in rows: - if row["error"]: + if row.get("error"): continue resource_id = row["resource_hdx_id"] if resource_id in resources_to_ignore: @@ -71,21 +72,8 @@ def hapi_populate( output_str = dataset_name else: output_str = dataset_id - admin_level = self._admins.get_admin_level_from_row( - hxltag_to_header, row, 2 - ) - admin2_ref = self._admins.get_admin2_ref_from_row( - hxltag_to_header, - row, - output_str, - pipeline, - admin_level, - ) countryiso3 = row["location_code"] - provider_admin1_name = row["provider_admin1_name"] or "" - provider_admin2_name = row["provider_admin2_name"] or "" - resource_name = self._metadata.get_resource_name(resource_id) if not resource_name: dataset = reader.read_dataset( @@ -108,11 +96,11 @@ def hapi_populate( resources_to_ignore.append(resource_id) continue + admin_level = self._admins.get_admin_level_from_row( + hxltag_to_header, row, max_admin_level + ) output_row = { "resource_hdx_id": resource_id, - "admin2_ref": admin2_ref, - "provider_admin1_name": provider_admin1_name, - "provider_admin2_name": provider_admin2_name, "reference_period_start": parse_date( row["reference_period_start"] ), @@ -120,6 +108,36 @@ def hapi_populate( row["reference_period_end"], max_time=True ), } + if max_admin_level == 2: + admin2_ref = self._admins.get_admin2_ref_from_row( + hxltag_to_header, + row, + output_str, + pipeline, + admin_level, + ) + output_row["admin2_ref"] = admin2_ref + output_row["provider_admin1_name"] = ( + row["provider_admin1_name"] or "" + ) + output_row["provider_admin2_name"] = ( + row["provider_admin2_name"] or "" + ) + elif max_admin_level == 1: + admin1_ref = self._admins.get_admin1_ref_from_row( + hxltag_to_header, + row, + output_str, + pipeline, + admin_level, + ) + output_row["admin1_ref"] = admin1_ref + output_row["provider_admin1_name"] = ( + row["provider_admin1_name"] or "" + ) + else: + output_row["location_ref"] = countryiso3 + self.populate_row(output_row, row) output_rows.append(output_row) logger.info(f"Writing to {log_name} table") diff --git a/src/hapi/pipelines/database/poverty_rate.py b/src/hapi/pipelines/database/poverty_rate.py index 4cbe1c2f..aaba81ab 100644 --- a/src/hapi/pipelines/database/poverty_rate.py +++ b/src/hapi/pipelines/database/poverty_rate.py @@ -1,122 +1,20 @@ -"""Functions specific to the poverty rate theme.""" - -from logging import getLogger from typing import Dict from hapi_schema.db_poverty_rate import DBPovertyRate -from hdx.api.configuration import Configuration -from hdx.api.utilities.hdx_error_handler import HDXErrorHandler -from hdx.scraper.framework.utilities.reader import Read -from hdx.utilities.dateparse import parse_date -from hdx.utilities.dictandlist import dict_of_lists_add, invert_dictionary -from hdx.utilities.text import get_numeric_if_possible -from sqlalchemy.orm import Session - -from ..utilities.provider_admin_names import get_provider_name -from . import admins -from .base_uploader import BaseUploader -from .metadata import Metadata -logger = getLogger(__name__) +from hapi.pipelines.database.hapi_dataset_uploader import HapiDatasetUploader -class PovertyRate(BaseUploader): - def __init__( - self, - session: Session, - metadata: Metadata, - admins: admins.Admins, - configuration: Configuration, - error_handler: HDXErrorHandler, - ): - super().__init__(session) - self._metadata = metadata - self._admins = admins - self._configuration = configuration - self._error_handler = error_handler +class PovertyRate(HapiDatasetUploader): + def populate_row(self, output_row: Dict, row: Dict) -> None: + output_row["mpi"] = row["mpi"] + output_row["headcount_ratio"] = row["headcount_ratio"] + # TODO: Remove 0.0 fallback once schema is updated + output_row["intensity_of_deprivation"] = ( + row["intensity_of_deprivation"] or 0.0 + ) + output_row["vulnerable_to_poverty"] = row["vulnerable_to_poverty"] + output_row["in_severe_poverty"] = row["in_severe_poverty"] def populate(self) -> None: - logger.info("Populating poverty rate table") - reader = Read.get_reader("hdx") - dataset = reader.read_dataset("global-mpi", self._configuration) - self._metadata.add_dataset(dataset) - dataset_id = dataset["id"] - dataset_name = dataset["name"] - null_values_by_iso3 = {} - - def get_value(row: Dict, in_col: str) -> float: - countryiso3 = row["Country ISO3"] - value = row[in_col] - admin_name = row["Admin 1 Name"] - if not admin_name: - admin_name = countryiso3 - if value is None: - dict_of_lists_add(null_values_by_iso3, countryiso3, admin_name) - return 0.0 - return get_numeric_if_possible(value) - - output_rows = {} - for resource in list(reversed(dataset.get_resources()))[-2:]: - resource_id = resource["id"] - self._metadata.add_resource(dataset_id, resource) - url = resource["url"] - header, rows = reader.get_tabular_rows(url, dict_form=True) - hxltag_to_header = invert_dictionary(next(rows)) - for row in rows: - admin_level = self._admins.get_admin_level_from_row( - hxltag_to_header, row, 1 - ) - admin1_ref = self._admins.get_admin1_ref_from_row( - hxltag_to_header, - row, - dataset_name, - "PovertyRate", - admin_level, - ) - if not admin1_ref: - continue - provider_admin1_name = get_provider_name(row, "Admin 1 Name") - reference_period_start = parse_date(row["Start Date"]) - reference_period_end = parse_date(row["End Date"]) - key = ( - admin1_ref, - provider_admin1_name, - reference_period_start, - reference_period_end, - ) - existing_resource_name = output_rows.get(key) - if existing_resource_name: - if existing_resource_name != resource["name"]: - continue - else: - raise ValueError( - f"Duplicate row in resource {existing_resource_name} with key {key}!" - ) - else: - output_rows[key] = resource["name"] - row = DBPovertyRate( - resource_hdx_id=resource_id, - admin1_ref=admin1_ref, - provider_admin1_name=provider_admin1_name, - reference_period_start=reference_period_start, - reference_period_end=reference_period_end, - mpi=get_value(row, "MPI"), - headcount_ratio=get_value(row, "Headcount Ratio"), - intensity_of_deprivation=get_value( - row, "Intensity of Deprivation" - ), - vulnerable_to_poverty=get_value( - row, "Vulnerable to Poverty" - ), - in_severe_poverty=get_value(row, "In Severe Poverty"), - ) - self._session.add(row) - self._session.commit() - - for countryiso3, values in null_values_by_iso3.items(): - self._error_handler.add_multi_valued_message( - "PovertyRate", - dataset_name, - f"null values set to 0.0 in {countryiso3}", - values, - ) + self.hapi_populate("poverty-rate", DBPovertyRate, max_admin_level=1) diff --git a/tests/fixtures/input/42b16840-3a56-4a20-9314-7aa171f1136c.json b/tests/fixtures/input/42b16840-3a56-4a20-9314-7aa171f1136c.json new file mode 100644 index 00000000..13b76f62 --- /dev/null +++ b/tests/fixtures/input/42b16840-3a56-4a20-9314-7aa171f1136c.json @@ -0,0 +1 @@ +{"archived": false, "batch": "fde1f8b4-1b11-48ae-9032-e002ce601b54", "caveats": "", "creator_user_id": "b682f6f7-cd7e-4bd4-8aa7-f74138dc6313", "data_update_frequency": "365", "dataseries_name": "Oxford Poverty and Human Development Initiative - Global Multidimensional Poverty Index", "dataset_date": "[2001-01-01T00:00:00 TO 2023-12-31T23:59:59]", "dataset_preview": "first_resource", "dataset_source": "Alkire, S., Kanagaratnam, U., and Suppa, N. (2023). \u2018The global Multidimensional Poverty Index (MPI) 2023 disaggregation results and methodological note\u2019, OPHI MPI Methodological Note 56, Oxford Poverty and Human Development Initiative (OPHI), University of Oxford.", "due_date": "2026-02-24T02:47:02", "has_geodata": false, "has_quickcharts": false, "has_showcases": false, "id": "42b16840-3a56-4a20-9314-7aa171f1136c", "is_requestdata_type": false, "isopen": false, "last_modified": "2025-02-24T02:47:02.590787", "license_id": "other-pd-nr", "license_title": "Public Domain / No Restrictions", "maintainer": "196196be-6037-4488-8b71-d786adf4c081", "maintainer_email": null, "metadata_created": "2024-11-05T12:48:36.172250", "metadata_modified": "2025-02-24T02:47:16.050427", "methodology": "Other", "methodology_other": "The global MPI is a leading policy tool that applies the multidimensional poverty methodology developed by Alkire and Foster [(2011)](https://www.sciencedirect.com/science/article/abs/pii/S0047272710001660?via%3Dihub). The global MPI is the product of incidence of poverty (H) and the average intensity of poverty (A). More information on methodology can be found here: https://ophi.org.uk/publications/MN-59, https://ophi.org.uk/publications/MN-60", "name": "global-mpi", "notes": "The index provides the only comprehensive measure available for non-income poverty, which has become a critical underpinning of the SDGs. Critically the MPI comprises variables that are already reported under the Demographic Health Surveys (DHS) and Multi-Indicator Cluster Surveys (MICS)\nThe resources subnational multidimensional poverty data from the [data tables](https://ophi.org.uk/multidimensional-poverty-index/data-tables-do-files/) published by the Oxford Poverty and Human Development Initiative (OPHI), University of Oxford. The global Multidimensional Poverty Index (MPI) measures multidimensional poverty in over 100 developing countries, using internationally comparable datasets and is updated annually. The measure captures the severe deprivations that each person faces at the same time using information from 10 indicators, which are grouped into three equally weighted dimensions: health, education, and living standards. The global MPI methodology is detailed in Alkire, Kanagaratnam & Suppa [(2023)](https://ophi.org.uk/sites/default/files/2024-03/OPHI_MPI_MN57_2023.pdf)", "num_resources": 5, "num_tags": 11, "organization": {"id": "00547685-9ded-4d69-9ca5-47d5278ead7c", "name": "oxford-poverty-human-development-initiative", "title": "Oxford Poverty & Human Development Initiative", "type": "organization", "description": "The Oxford Poverty and Human Development Initiative (OPHI) is an economic research centre within the Oxford Department of International Development at the University of Oxford. OPHI aims to build and advance a more systematic methodological and economic framework for reducing multidimensional poverty, grounded in people\u2019s experiences and values.", "image_url": "", "created": "2015-01-09T16:54:53.844274", "is_organization": true, "approval_status": "approved", "state": "active"}, "overdue_date": "2026-04-25T02:47:02", "owner_org": "00547685-9ded-4d69-9ca5-47d5278ead7c", "package_creator": "berylnyamgeroh", "pageviews_last_14_days": 41, "private": false, "qa_completed": false, "solr_additions": "{\"countries\": [\"Afghanistan\", \"Albania\", \"Algeria\", \"Angola\", \"Argentina\", \"Armenia\", \"Bangladesh\", \"Barbados\", \"Belize\", \"Benin\", \"Bhutan\", \"Bolivia (Plurinational State of)\", \"Bosnia and Herzegovina\", \"Botswana\", \"Brazil\", \"Burkina Faso\", \"Burundi\", \"Cambodia\", \"Cameroon\", \"Central African Republic\", \"Chad\", \"China\", \"Colombia\", \"Comoros\", \"Congo\", \"Costa Rica\", \"C\\u00f4te d'Ivoire\", \"Cuba\", \"Democratic Republic of the Congo\", \"Dominican Republic\", \"Ecuador\", \"Egypt\", \"El Salvador\", \"Eswatini\", \"Ethiopia\", \"Fiji\", \"Gabon\", \"Gambia\", \"Georgia\", \"Ghana\", \"Guatemala\", \"Guinea\", \"Guinea-Bissau\", \"Guyana\", \"Haiti\", \"Honduras\", \"India\", \"Indonesia\", \"Iraq\", \"Jamaica\", \"Jordan\", \"Kazakhstan\", \"Kenya\", \"Kiribati\", \"Kyrgyzstan\", \"Lao People's Democratic Republic\", \"Lesotho\", \"Liberia\", \"Libya\", \"Madagascar\", \"Malawi\", \"Maldives\", \"Mali\", \"Mauritania\", \"Mexico\", \"Mongolia\", \"Montenegro\", \"Morocco\", \"Mozambique\", \"Myanmar\", \"Namibia\", \"Nepal\", \"Nicaragua\", \"Niger\", \"Nigeria\", \"North Macedonia\", \"Pakistan\", \"Papua New Guinea\", \"Paraguay\", \"Peru\", \"Philippines\", \"Republic of Moldova\", \"Rwanda\", \"Saint Lucia\", \"Samoa\", \"Sao Tome and Principe\", \"Senegal\", \"Serbia\", \"Seychelles\", \"Sierra Leone\", \"South Africa\", \"Sri Lanka\", \"State of Palestine\", \"Sudan\", \"Suriname\", \"Tajikistan\", \"Thailand\", \"Timor-Leste\", \"Togo\", \"Tonga\", \"Trinidad and Tobago\", \"Tunisia\", \"Turkmenistan\", \"Tuvalu\", \"Uganda\", \"Ukraine\", \"United Republic of Tanzania\", \"Uzbekistan\", \"Viet Nam\", \"Yemen\", \"Zambia\", \"Zimbabwe\"]}", "state": "active", "subnational": "1", "title": "Global Multi Dimensional Poverty Index", "total_res_downloads": 201, "type": "dataset", "updated_by_script": "HDX Scraper: OPHI (2025-02-24T02:47:01.340551)", "url": null, "version": null, "groups": [{"description": "", "display_name": "Afghanistan", "id": "afg", "image_display_url": "", "name": "afg", "title": "Afghanistan"}, {"description": "", "display_name": "Albania", "id": "alb", "image_display_url": "", "name": "alb", "title": "Albania"}, {"description": "", "display_name": "Algeria", "id": "dza", "image_display_url": "", "name": "dza", "title": "Algeria"}, {"description": "", "display_name": "Angola", "id": "ago", "image_display_url": "", "name": "ago", "title": "Angola"}, {"description": "", "display_name": "Argentina", "id": "arg", "image_display_url": "", "name": "arg", "title": "Argentina"}, {"description": "", "display_name": "Armenia", "id": "arm", "image_display_url": "", "name": "arm", "title": "Armenia"}, {"description": "test", "display_name": "Bangladesh", "id": "bgd", "image_display_url": "", "name": "bgd", "title": "Bangladesh"}, {"description": "", "display_name": "Barbados", "id": "brb", "image_display_url": "", "name": "brb", "title": "Barbados"}, {"description": "", "display_name": "Belize", "id": "blz", "image_display_url": "", "name": "blz", "title": "Belize"}, {"description": "", "display_name": "Benin", "id": "ben", "image_display_url": "", "name": "ben", "title": "Benin"}, {"description": "", "display_name": "Bhutan", "id": "btn", "image_display_url": "", "name": "btn", "title": "Bhutan"}, {"description": "", "display_name": "Bolivia (Plurinational State of)", "id": "bol", "image_display_url": "", "name": "bol", "title": "Bolivia (Plurinational State of)"}, {"description": "", "display_name": "Bosnia and Herzegovina", "id": "bih", "image_display_url": "", "name": "bih", "title": "Bosnia and Herzegovina"}, {"description": "", "display_name": "Botswana", "id": "bwa", "image_display_url": "", "name": "bwa", "title": "Botswana"}, {"description": "", "display_name": "Brazil", "id": "bra", "image_display_url": "", "name": "bra", "title": "Brazil"}, {"description": "", "display_name": "Burkina Faso", "id": "bfa", "image_display_url": "", "name": "bfa", "title": "Burkina Faso"}, {"description": "", "display_name": "Burundi", "id": "bdi", "image_display_url": "", "name": "bdi", "title": "Burundi"}, {"description": "", "display_name": "Cambodia", "id": "khm", "image_display_url": "", "name": "khm", "title": "Cambodia"}, {"description": "", "display_name": "Cameroon", "id": "cmr", "image_display_url": "", "name": "cmr", "title": "Cameroon"}, {"description": "", "display_name": "Central African Republic", "id": "caf", "image_display_url": "", "name": "caf", "title": "Central African Republic"}, {"description": "", "display_name": "Chad", "id": "tcd", "image_display_url": "", "name": "tcd", "title": "Chad"}, {"description": "", "display_name": "China", "id": "chn", "image_display_url": "", "name": "chn", "title": "China"}, {"description": "", "display_name": "Colombia", "id": "col", "image_display_url": "", "name": "col", "title": "Colombia"}, {"description": "", "display_name": "Comoros", "id": "com", "image_display_url": "", "name": "com", "title": "Comoros"}, {"description": "", "display_name": "Congo", "id": "cog", "image_display_url": "", "name": "cog", "title": "Congo"}, {"description": "", "display_name": "Costa Rica", "id": "cri", "image_display_url": "", "name": "cri", "title": "Costa Rica"}, {"description": "", "display_name": "C\u00f4te d'Ivoire", "id": "civ", "image_display_url": "", "name": "civ", "title": "C\u00f4te d'Ivoire"}, {"description": "", "display_name": "Cuba", "id": "cub", "image_display_url": "", "name": "cub", "title": "Cuba"}, {"description": "", "display_name": "Democratic Republic of the Congo", "id": "cod", "image_display_url": "", "name": "cod", "title": "Democratic Republic of the Congo"}, {"description": "", "display_name": "Dominican Republic", "id": "dom", "image_display_url": "", "name": "dom", "title": "Dominican Republic"}, {"description": "", "display_name": "Ecuador", "id": "ecu", "image_display_url": "", "name": "ecu", "title": "Ecuador"}, {"description": "", "display_name": "Egypt", "id": "egy", "image_display_url": "", "name": "egy", "title": "Egypt"}, {"description": "", "display_name": "El Salvador", "id": "slv", "image_display_url": "", "name": "slv", "title": "El Salvador"}, {"description": "", "display_name": "Eswatini", "id": "swz", "image_display_url": "", "name": "swz", "title": "Eswatini"}, {"description": "", "display_name": "Ethiopia", "id": "eth", "image_display_url": "", "name": "eth", "title": "Ethiopia"}, {"description": "", "display_name": "Fiji", "id": "fji", "image_display_url": "", "name": "fji", "title": "Fiji"}, {"description": "", "display_name": "Gabon", "id": "gab", "image_display_url": "", "name": "gab", "title": "Gabon"}, {"description": "", "display_name": "Gambia", "id": "gmb", "image_display_url": "", "name": "gmb", "title": "Gambia"}, {"description": "", "display_name": "Georgia", "id": "geo", "image_display_url": "", "name": "geo", "title": "Georgia"}, {"description": "", "display_name": "Ghana", "id": "gha", "image_display_url": "", "name": "gha", "title": "Ghana"}, {"description": "", "display_name": "Guatemala", "id": "gtm", "image_display_url": "", "name": "gtm", "title": "Guatemala"}, {"description": "", "display_name": "Guinea", "id": "gin", "image_display_url": "", "name": "gin", "title": "Guinea"}, {"description": "", "display_name": "Guinea-Bissau", "id": "gnb", "image_display_url": "", "name": "gnb", "title": "Guinea-Bissau"}, {"description": "", "display_name": "Guyana", "id": "guy", "image_display_url": "", "name": "guy", "title": "Guyana"}, {"description": "", "display_name": "Haiti", "id": "hti", "image_display_url": "", "name": "hti", "title": "Haiti"}, {"description": "", "display_name": "Honduras", "id": "hnd", "image_display_url": "", "name": "hnd", "title": "Honduras"}, {"description": "", "display_name": "India", "id": "ind", "image_display_url": "", "name": "ind", "title": "India"}, {"description": "", "display_name": "Indonesia", "id": "idn", "image_display_url": "", "name": "idn", "title": "Indonesia"}, {"description": "", "display_name": "Iraq", "id": "irq", "image_display_url": "", "name": "irq", "title": "Iraq"}, {"description": "", "display_name": "Jamaica", "id": "jam", "image_display_url": "", "name": "jam", "title": "Jamaica"}, {"description": "", "display_name": "Jordan", "id": "jor", "image_display_url": "", "name": "jor", "title": "Jordan"}, {"description": "", "display_name": "Kazakhstan", "id": "kaz", "image_display_url": "", "name": "kaz", "title": "Kazakhstan"}, {"description": "", "display_name": "Kenya", "id": "ken", "image_display_url": "", "name": "ken", "title": "Kenya"}, {"description": "", "display_name": "Kiribati", "id": "kir", "image_display_url": "", "name": "kir", "title": "Kiribati"}, {"description": "", "display_name": "Kyrgyzstan", "id": "kgz", "image_display_url": "", "name": "kgz", "title": "Kyrgyzstan"}, {"description": "", "display_name": "Lao People's Democratic Republic", "id": "lao", "image_display_url": "", "name": "lao", "title": "Lao People's Democratic Republic"}, {"description": "", "display_name": "Lesotho", "id": "lso", "image_display_url": "", "name": "lso", "title": "Lesotho"}, {"description": "", "display_name": "Liberia", "id": "lbr", "image_display_url": "", "name": "lbr", "title": "Liberia"}, {"description": "", "display_name": "Libya", "id": "lby", "image_display_url": "", "name": "lby", "title": "Libya"}, {"description": "", "display_name": "Madagascar", "id": "mdg", "image_display_url": "", "name": "mdg", "title": "Madagascar"}, {"description": "", "display_name": "Malawi", "id": "mwi", "image_display_url": "", "name": "mwi", "title": "Malawi"}, {"description": "", "display_name": "Maldives", "id": "mdv", "image_display_url": "", "name": "mdv", "title": "Maldives"}, {"description": "", "display_name": "Mali", "id": "mli", "image_display_url": "", "name": "mli", "title": "Mali"}, {"description": "", "display_name": "Mauritania", "id": "mrt", "image_display_url": "", "name": "mrt", "title": "Mauritania"}, {"description": "", "display_name": "Mexico", "id": "mex", "image_display_url": "", "name": "mex", "title": "Mexico"}, {"description": "", "display_name": "Mongolia", "id": "mng", "image_display_url": "", "name": "mng", "title": "Mongolia"}, {"description": "", "display_name": "Montenegro", "id": "mne", "image_display_url": "", "name": "mne", "title": "Montenegro"}, {"description": "", "display_name": "Morocco", "id": "mar", "image_display_url": "", "name": "mar", "title": "Morocco"}, {"description": "", "display_name": "Mozambique", "id": "moz", "image_display_url": "", "name": "moz", "title": "Mozambique"}, {"description": "", "display_name": "Myanmar", "id": "mmr", "image_display_url": "", "name": "mmr", "title": "Myanmar"}, {"description": "", "display_name": "Namibia", "id": "nam", "image_display_url": "", "name": "nam", "title": "Namibia"}, {"description": "", "display_name": "Nepal", "id": "npl", "image_display_url": "", "name": "npl", "title": "Nepal"}, {"description": "", "display_name": "Nicaragua", "id": "nic", "image_display_url": "", "name": "nic", "title": "Nicaragua"}, {"description": "", "display_name": "Niger", "id": "ner", "image_display_url": "", "name": "ner", "title": "Niger"}, {"description": "", "display_name": "Nigeria", "id": "nga", "image_display_url": "", "name": "nga", "title": "Nigeria"}, {"description": "", "display_name": "North Macedonia", "id": "mkd", "image_display_url": "", "name": "mkd", "title": "North Macedonia"}, {"description": "", "display_name": "Pakistan", "id": "pak", "image_display_url": "", "name": "pak", "title": "Pakistan"}, {"description": "", "display_name": "Papua New Guinea", "id": "png", "image_display_url": "", "name": "png", "title": "Papua New Guinea"}, {"description": "", "display_name": "Paraguay", "id": "pry", "image_display_url": "", "name": "pry", "title": "Paraguay"}, {"description": "", "display_name": "Peru", "id": "per", "image_display_url": "", "name": "per", "title": "Peru"}, {"description": "", "display_name": "Philippines", "id": "phl", "image_display_url": "", "name": "phl", "title": "Philippines"}, {"description": "", "display_name": "Republic of Moldova", "id": "mda", "image_display_url": "", "name": "mda", "title": "Republic of Moldova"}, {"description": "", "display_name": "Rwanda", "id": "rwa", "image_display_url": "", "name": "rwa", "title": "Rwanda"}, {"description": "", "display_name": "Saint Lucia", "id": "lca", "image_display_url": "", "name": "lca", "title": "Saint Lucia"}, {"description": "", "display_name": "Samoa", "id": "wsm", "image_display_url": "", "name": "wsm", "title": "Samoa"}, {"description": "", "display_name": "Sao Tome and Principe", "id": "stp", "image_display_url": "", "name": "stp", "title": "Sao Tome and Principe"}, {"description": "", "display_name": "Senegal", "id": "sen", "image_display_url": "", "name": "sen", "title": "Senegal"}, {"description": "", "display_name": "Serbia", "id": "srb", "image_display_url": "", "name": "srb", "title": "Serbia"}, {"description": "", "display_name": "Seychelles", "id": "syc", "image_display_url": "", "name": "syc", "title": "Seychelles"}, {"description": "", "display_name": "Sierra Leone", "id": "sle", "image_display_url": "", "name": "sle", "title": "Sierra Leone"}, {"description": "", "display_name": "South Africa", "id": "zaf", "image_display_url": "", "name": "zaf", "title": "South Africa"}, {"description": "", "display_name": "Sri Lanka", "id": "lka", "image_display_url": "", "name": "lka", "title": "Sri Lanka"}, {"description": "", "display_name": "State of Palestine", "id": "pse", "image_display_url": "", "name": "pse", "title": "State of Palestine"}, {"description": "", "display_name": "Sudan", "id": "sdn", "image_display_url": "", "name": "sdn", "title": "Sudan"}, {"description": "", "display_name": "Suriname", "id": "sur", "image_display_url": "", "name": "sur", "title": "Suriname"}, {"description": "", "display_name": "Tajikistan", "id": "tjk", "image_display_url": "", "name": "tjk", "title": "Tajikistan"}, {"description": "", "display_name": "Thailand", "id": "tha", "image_display_url": "", "name": "tha", "title": "Thailand"}, {"description": "", "display_name": "Timor-Leste", "id": "86b999e4-6981-401e-b57d-e15ad5a9ec86", "image_display_url": "", "name": "tls", "title": "Timor-Leste"}, {"description": "", "display_name": "Togo", "id": "tgo", "image_display_url": "", "name": "tgo", "title": "Togo"}, {"description": "", "display_name": "Tonga", "id": "ton", "image_display_url": "", "name": "ton", "title": "Tonga"}, {"description": "", "display_name": "Trinidad and Tobago", "id": "tto", "image_display_url": "", "name": "tto", "title": "Trinidad and Tobago"}, {"description": "", "display_name": "Tunisia", "id": "tun", "image_display_url": "", "name": "tun", "title": "Tunisia"}, {"description": "", "display_name": "Turkmenistan", "id": "tkm", "image_display_url": "", "name": "tkm", "title": "Turkmenistan"}, {"description": "", "display_name": "Tuvalu", "id": "tuv", "image_display_url": "", "name": "tuv", "title": "Tuvalu"}, {"description": "", "display_name": "Uganda", "id": "uga", "image_display_url": "", "name": "uga", "title": "Uganda"}, {"description": "", "display_name": "Ukraine", "id": "ukr", "image_display_url": "", "name": "ukr", "title": "Ukraine"}, {"description": "", "display_name": "United Republic of Tanzania", "id": "tza", "image_display_url": "", "name": "tza", "title": "United Republic of Tanzania"}, {"description": "", "display_name": "Uzbekistan", "id": "uzb", "image_display_url": "", "name": "uzb", "title": "Uzbekistan"}, {"description": "", "display_name": "Viet Nam", "id": "vnm", "image_display_url": "", "name": "vnm", "title": "Viet Nam"}, {"description": "", "display_name": "Yemen", "id": "yem", "image_display_url": "", "name": "yem", "title": "Yemen"}, {"description": "", "display_name": "Zambia", "id": "zmb", "image_display_url": "", "name": "zmb", "title": "Zambia"}, {"description": "", "display_name": "Zimbabwe", "id": "zwe", "image_display_url": "", "name": "zwe", "title": "Zimbabwe"}], "tags": [{"display_name": "development", "id": "3be50db2-69e2-406f-83b8-195598d0c0d5", "name": "development", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "education", "id": "111f9068-6270-4dbd-a2a9-b4d69ee1735b", "name": "education", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "health", "id": "26fe3d20-9de7-436b-b47a-4f7f2e4547d0", "name": "health", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "hxl", "id": "a0fbb23a-6aad-4ccc-8062-e9ef9f20e5d2", "name": "hxl", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "indicators", "id": "08dade96-0bf4-4248-9d9f-421f7b844e53", "name": "indicators", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "mortality", "id": "87a19f57-52b9-4f70-b23e-138e44bf3a81", "name": "mortality", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "nutrition", "id": "5cd44eef-f868-47d8-afb4-7d7d63154533", "name": "nutrition", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "poverty", "id": "c3544ec4-753e-4c1b-9cd6-942fb689fab5", "name": "poverty", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "socioeconomics", "id": "a64218ff-64ff-4777-a664-6b0a331ab605", "name": "socioeconomics", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "sustainable development goals-sdg", "id": "570d5718-b98f-46af-ac89-2b6f49fa9ed1", "name": "sustainable development goals-sdg", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "water sanitation and hygiene-wash", "id": "5a4f7135-daaf-4c82-985f-e0bb443fdb94", "name": "water sanitation and hygiene-wash", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}], "relationships_as_subject": [], "relationships_as_object": [], "is_fresh": true, "update_status": "fresh", "x_resource_grouping": [], "resources": [{"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-05T12:48:50.090762", "datastore_active": false, "description": "This resource contains standardised MPI estimates by admin one unit and also shows the proportion of people who are MPI poor and experience deprivations in each of the indicators by admin one unit.", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv", "format": "CSV", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-12-05T19:38:23.235989\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-12-05T19:38:30.595342\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 1473, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"f960c0d3020e075d380abcb51179f0cd\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"country_code\", \"admin1_code\", \"admin1_name\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-24T00:41:27.329974\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-01-24T00:41:34.355564\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 1473, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"f960c0d3020e075d380abcb51179f0cd\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"country_code\", \"admin1_code\", \"admin1_name\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-29T03:04:52.746241\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-01-29T03:05:02.272136\", \"sheet_changes\": [{\"name\": \"__DEFAULT__\", \"event_type\": \"spreadsheet-sheet-changed\", \"changed_fields\": [{\"field\": \"header_hash\", \"new_value\": \"ee35a705cf2b41df67394940ca45c4f1\", \"new_display_value\": \"ee35a705cf2b41df67394940ca45c4f1\", \"old_value\": \"f960c0d3020e075d380abcb51179f0cd\", \"old_display_value\": \"f960c0d3020e075d380abcb51179f0cd\"}]}], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 1473, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"ee35a705cf2b41df67394940ca45c4f1\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"Country ISO3\", \"Admin 1 PCode\", \"Admin 1 Name\", \"MPI\", \"Headcount Ratio\", \"Intensity of Deprivation\", \"Vulnerable to Poverty\", \"In Severe Poverty\", \"Start Date\", \"End Date\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-19T22:34:27.665997\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-19T22:34:34.413413\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 1473, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"ee35a705cf2b41df67394940ca45c4f1\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"Country ISO3\", \"Admin 1 PCode\", \"Admin 1 Name\", \"MPI\", \"Headcount Ratio\", \"Intensity of Deprivation\", \"Vulnerable to Poverty\", \"In Severe Poverty\", \"Start Date\", \"End Date\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-24T02:47:01.549553\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-24T02:47:06.595329\", \"sheet_changes\": [{\"name\": \"__DEFAULT__\", \"event_type\": \"spreadsheet-sheet-changed\", \"changed_fields\": [{\"field\": \"header_hash\", \"new_value\": \"b86d817435c97045ba56f20394bfef53\", \"new_display_value\": \"b86d817435c97045ba56f20394bfef53\", \"old_value\": \"ee35a705cf2b41df67394940ca45c4f1\", \"old_display_value\": \"ee35a705cf2b41df67394940ca45c4f1\"}, {\"field\": \"ncols\", \"new_value\": 12, \"new_display_value\": 12, \"old_value\": 10, \"old_display_value\": 10}, {\"field\": \"hxl_header_hash\", \"new_value\": \"da2a95cfe10586e5ba3292f420f59e13\", \"new_display_value\": \"da2a95cfe10586e5ba3292f420f59e13\", \"old_value\": \"c3e613727ca869bdc9a3d06704bf1264\", \"old_display_value\": \"c3e613727ca869bdc9a3d06704bf1264\"}]}], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 1473, \"ncols\": 12, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"b86d817435c97045ba56f20394bfef53\", \"hxl_header_hash\": \"da2a95cfe10586e5ba3292f420f59e13\", \"headers\": [\"Country ISO3\", \"Admin 1 PCode\", \"Admin 1 Name\", \"MPI\", \"Headcount Ratio\", \"Intensity of Deprivation\", \"Vulnerable to Poverty\", \"In Severe Poverty\", \"Survey\", \"Start Date\", \"End Date\", \"Methodology Note Number\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#meta+survey\", \"#date+start\", \"#date+end\", \"#meta+methodology+num\"]}]}}]", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv", "id": "ef20310e-2821-4aa9-98a8-1950f45f10d0", "in_hapi": "yes", "last_modified": "2025-02-24T02:47:01.824342", "metadata_modified": "2025-02-24T02:47:07.993362", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "Global MPI and Partial Indices", "originalHash": "8750915", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "pii": "false", "position": 0, "resource_type": "file.upload", "size": 170810, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-05T12:48:51.907527", "datastore_active": false, "description": "This resource contains standardised MPI estimates and their changes over time by admin one unit and also shows the proportion of people who are MPI poor and experience deprivations in each of the indicators by admin one unit.", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv", "format": "CSV", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-12-05T19:38:23.236012\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-12-05T19:38:31.160412\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 2578, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"f960c0d3020e075d380abcb51179f0cd\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"country_code\", \"admin1_code\", \"admin1_name\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-24T00:41:27.329991\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-01-24T00:41:34.576488\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 2578, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"f960c0d3020e075d380abcb51179f0cd\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"country_code\", \"admin1_code\", \"admin1_name\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-29T03:04:52.746260\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-01-29T03:05:12.386699\", \"sheet_changes\": [{\"name\": \"__DEFAULT__\", \"event_type\": \"spreadsheet-sheet-changed\", \"changed_fields\": [{\"field\": \"header_hash\", \"new_value\": \"ee35a705cf2b41df67394940ca45c4f1\", \"new_display_value\": \"ee35a705cf2b41df67394940ca45c4f1\", \"old_value\": \"f960c0d3020e075d380abcb51179f0cd\", \"old_display_value\": \"f960c0d3020e075d380abcb51179f0cd\"}]}], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 2578, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"ee35a705cf2b41df67394940ca45c4f1\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"Country ISO3\", \"Admin 1 PCode\", \"Admin 1 Name\", \"MPI\", \"Headcount Ratio\", \"Intensity of Deprivation\", \"Vulnerable to Poverty\", \"In Severe Poverty\", \"Start Date\", \"End Date\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-19T22:34:27.666013\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-19T22:34:34.795496\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 2578, \"ncols\": 10, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"ee35a705cf2b41df67394940ca45c4f1\", \"hxl_header_hash\": \"c3e613727ca869bdc9a3d06704bf1264\", \"headers\": [\"Country ISO3\", \"Admin 1 PCode\", \"Admin 1 Name\", \"MPI\", \"Headcount Ratio\", \"Intensity of Deprivation\", \"Vulnerable to Poverty\", \"In Severe Poverty\", \"Start Date\", \"End Date\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-24T02:47:01.549563\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-24T02:47:06.531451\", \"sheet_changes\": [{\"name\": \"__DEFAULT__\", \"event_type\": \"spreadsheet-sheet-changed\", \"changed_fields\": [{\"field\": \"ncols\", \"new_value\": 12, \"new_display_value\": 12, \"old_value\": 10, \"old_display_value\": 10}, {\"field\": \"hxl_header_hash\", \"new_value\": \"da2a95cfe10586e5ba3292f420f59e13\", \"new_display_value\": \"da2a95cfe10586e5ba3292f420f59e13\", \"old_value\": \"c3e613727ca869bdc9a3d06704bf1264\", \"old_display_value\": \"c3e613727ca869bdc9a3d06704bf1264\"}, {\"field\": \"header_hash\", \"new_value\": \"b86d817435c97045ba56f20394bfef53\", \"new_display_value\": \"b86d817435c97045ba56f20394bfef53\", \"old_value\": \"ee35a705cf2b41df67394940ca45c4f1\", \"old_display_value\": \"ee35a705cf2b41df67394940ca45c4f1\"}]}], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 2578, \"ncols\": 12, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"b86d817435c97045ba56f20394bfef53\", \"hxl_header_hash\": \"da2a95cfe10586e5ba3292f420f59e13\", \"headers\": [\"Country ISO3\", \"Admin 1 PCode\", \"Admin 1 Name\", \"MPI\", \"Headcount Ratio\", \"Intensity of Deprivation\", \"Vulnerable to Poverty\", \"In Severe Poverty\", \"Survey\", \"Start Date\", \"End Date\", \"Methodology Note Number\"], \"hxl_headers\": [\"#country+code\", \"#adm1+code\", \"#adm1+name\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#meta+survey\", \"#date+start\", \"#date+end\", \"#meta+methodology+num\"]}]}}]", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv", "id": "7c131db3-a172-4280-b37a-85f678192fbe", "in_hapi": "yes", "last_modified": "2025-02-24T02:47:02.095808", "metadata_modified": "2025-02-24T02:47:06.887283", "microdata": false, "mimetype": "text/csv", "mimetype_inner": null, "name": "Global MPI Trends Over Time", "originalHash": "8750915", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "pii": "false", "position": 1, "resource_type": "file.upload", "size": 297392, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-18T23:21:48.596637", "datastore_active": false, "description": "This table shows the MPI and its partial indices", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/national-results-mpi.xlsx", "format": "XLSX", "fs_check_info": "{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-24T02:47:01.549572\"}", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/national-results-mpi.xlsx", "id": "2b59362a-0c67-4e8b-bb78-b7aaf3a183fd", "last_modified": "2025-02-24T02:47:02.248893", "metadata_modified": "2025-02-24T02:47:02.742869", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MPI and Partial Indices National Database", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "position": 2, "resource_type": "file.upload", "size": 211605, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/national-results-mpi.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-18T23:21:48.596641", "datastore_active": false, "description": "This table shows the MPI and its partial indices disaggregated by subnational regions", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-12-04T23:52:41.968970\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"5.1 MPI Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 21, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"75c70fe349c6b79a23d6374902017ede\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.1 MPI results by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.2 Censored Headcounts Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 27, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"3dfdb4d3e213fbf61cf057e71068a69e\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.2 Censored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.3 Contribution Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 30, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"c09942d08a0a75cae304d0c33eab0caf\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.3 Contribution of deprivations to the MPI, by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.4 SEs & CIs Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 24, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ca8911a4370f8083f48fa8b08977bb98\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.4 Standard errors and confidence intervals for subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.5 Uncensored H Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 26, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"26ae266c604e513253c5ffe19067a4a1\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.5 Uncensored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.6 Sample Sizes Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 10, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"6e175d8337265db16e045c495aebdcfb\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.6 Sample sizes and non-response rates by subnational regions\"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-12-05T19:38:23.236031\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-12-05T19:38:41.329060\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"5.1 MPI Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 21, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"75c70fe349c6b79a23d6374902017ede\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.1 MPI results by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.2 Censored Headcounts Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 27, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"3dfdb4d3e213fbf61cf057e71068a69e\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.2 Censored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.3 Contribution Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 30, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"c09942d08a0a75cae304d0c33eab0caf\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.3 Contribution of deprivations to the MPI, by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.4 SEs & CIs Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 24, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ca8911a4370f8083f48fa8b08977bb98\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.4 Standard errors and confidence intervals for subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.5 Uncensored H Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 26, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"26ae266c604e513253c5ffe19067a4a1\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.5 Uncensored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.6 Sample Sizes Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 10, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"6e175d8337265db16e045c495aebdcfb\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.6 Sample sizes and non-response rates by subnational regions\"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-24T00:41:27.330013\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-01-24T00:41:36.741826\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"5.1 MPI Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 21, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"75c70fe349c6b79a23d6374902017ede\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.1 MPI results by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.2 Censored Headcounts Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 27, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"3dfdb4d3e213fbf61cf057e71068a69e\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.2 Censored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.3 Contribution Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 30, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"c09942d08a0a75cae304d0c33eab0caf\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.3 Contribution of deprivations to the MPI, by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.4 SEs & CIs Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 24, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ca8911a4370f8083f48fa8b08977bb98\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.4 Standard errors and confidence intervals for subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.5 Uncensored H Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 26, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"26ae266c604e513253c5ffe19067a4a1\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.5 Uncensored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.6 Sample Sizes Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 10, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"6e175d8337265db16e045c495aebdcfb\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.6 Sample sizes and non-response rates by subnational regions\"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-29T03:04:52.746285\"}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-19T22:34:27.666035\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-19T22:34:37.567378\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"5.1 MPI Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 21, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"75c70fe349c6b79a23d6374902017ede\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.1 MPI results by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.2 Censored Headcounts Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 27, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"3dfdb4d3e213fbf61cf057e71068a69e\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.2 Censored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.3 Contribution Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 30, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"c09942d08a0a75cae304d0c33eab0caf\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.3 Contribution of deprivations to the MPI, by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.4 SEs & CIs Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 24, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ca8911a4370f8083f48fa8b08977bb98\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.4 Standard errors and confidence intervals for subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.5 Uncensored H Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 26, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"26ae266c604e513253c5ffe19067a4a1\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.5 Uncensored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.6 Sample Sizes Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 10, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"6e175d8337265db16e045c495aebdcfb\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.6 Sample sizes and non-response rates by subnational regions\"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-24T02:47:01.549577\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-24T02:47:08.676687\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"5.1 MPI Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 21, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"75c70fe349c6b79a23d6374902017ede\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.1 MPI results by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.2 Censored Headcounts Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 27, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"3dfdb4d3e213fbf61cf057e71068a69e\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.2 Censored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.3 Contribution Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 30, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"c09942d08a0a75cae304d0c33eab0caf\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.3 Contribution of deprivations to the MPI, by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.4 SEs & CIs Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 24, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ca8911a4370f8083f48fa8b08977bb98\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.4 Standard errors and confidence intervals for subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.5 Uncensored H Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 26, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"26ae266c604e513253c5ffe19067a4a1\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.5 Uncensored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.6 Sample Sizes Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 10, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"6e175d8337265db16e045c495aebdcfb\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.6 Sample sizes and non-response rates by subnational regions\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx", "id": "45b18fbb-ab0d-4f54-ae23-c078f1eccf25", "last_modified": "2025-02-24T02:47:02.410945", "metadata_modified": "2025-02-24T02:47:09.413216", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MPI and Partial Indices Subnational Database", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "position": 3, "resource_type": "file.upload", "size": 1936328, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-18T23:21:48.596643", "datastore_active": false, "description": "This table shows global mpi harmonized level estimates and their changes over time", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-12-05T19:38:23.236040\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-12-05T19:38:43.604350\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"readme\", \"is_hidden\": false, \"nrows\": 4, \"ncols\": 1, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"6.1 Harmonised MPI\", \"is_hidden\": false, \"nrows\": 162, \"ncols\": 110, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"d38dd290da893e1381feaa007aa01b6d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.1 Harmonised MPI results by country and survey period \"], \"hxl_headers\": null}, {\"name\": \"6.2 Harmonised MPI Age\", \"is_hidden\": false, \"nrows\": 897, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"f9719e7eab69ecf4ec05614bc041ad13\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.2 Harmonised MPI by age group \"], \"hxl_headers\": null}, {\"name\": \"6.3 Harmonised MPI Area\", \"is_hidden\": false, \"nrows\": 311, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"51e19b5db95463a685168ef14e0db8cb\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.3 Harmonised MPI by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.4 Harmonised MPI Region\", \"is_hidden\": false, \"nrows\": 1495, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"171f338ddda10fb3073f2e8d7e60f267\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.4 Harmonised MPI by subnational regions \"], \"hxl_headers\": null}, {\"name\": \"6.5 Uncensored hd & stats\", \"is_hidden\": false, \"nrows\": 160, \"ncols\": 90, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ea027c617d2209b98b959ae03eface78\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.5 Harmonised uncensored headcount ratios and sample details by country \"], \"hxl_headers\": null}, {\"name\": \"6.6 Uncensored hd & stats Age\", \"is_hidden\": false, \"nrows\": 895, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ddaae4cff8f35f28e0774ef575649aec\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.6 Harmonised uncensored headcount ratios and sample details by age group \"], \"hxl_headers\": null}, {\"name\": \"6.7 Uncensored hd & stats Area \", \"is_hidden\": false, \"nrows\": 309, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"9241f49cd24be09d6120ce134190f111\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.7 Harmonised uncensored headcount ratios and sample details by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.8Uncensored hd & stats Region\", \"is_hidden\": false, \"nrows\": 1493, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"2f2ac88b2196261b811a9bca010e787d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.8 Harmonised uncensored headcount ratios and sample details by subnational regions \"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-24T00:41:27.330020\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-01-24T00:41:44.550527\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"readme\", \"is_hidden\": false, \"nrows\": 4, \"ncols\": 1, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"6.1 Harmonised MPI\", \"is_hidden\": false, \"nrows\": 162, \"ncols\": 110, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"d38dd290da893e1381feaa007aa01b6d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.1 Harmonised MPI results by country and survey period \"], \"hxl_headers\": null}, {\"name\": \"6.2 Harmonised MPI Age\", \"is_hidden\": false, \"nrows\": 897, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"f9719e7eab69ecf4ec05614bc041ad13\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.2 Harmonised MPI by age group \"], \"hxl_headers\": null}, {\"name\": \"6.3 Harmonised MPI Area\", \"is_hidden\": false, \"nrows\": 311, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"51e19b5db95463a685168ef14e0db8cb\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.3 Harmonised MPI by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.4 Harmonised MPI Region\", \"is_hidden\": false, \"nrows\": 1495, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"171f338ddda10fb3073f2e8d7e60f267\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.4 Harmonised MPI by subnational regions \"], \"hxl_headers\": null}, {\"name\": \"6.5 Uncensored hd & stats\", \"is_hidden\": false, \"nrows\": 160, \"ncols\": 90, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ea027c617d2209b98b959ae03eface78\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.5 Harmonised uncensored headcount ratios and sample details by country \"], \"hxl_headers\": null}, {\"name\": \"6.6 Uncensored hd & stats Age\", \"is_hidden\": false, \"nrows\": 895, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ddaae4cff8f35f28e0774ef575649aec\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.6 Harmonised uncensored headcount ratios and sample details by age group \"], \"hxl_headers\": null}, {\"name\": \"6.7 Uncensored hd & stats Area \", \"is_hidden\": false, \"nrows\": 309, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"9241f49cd24be09d6120ce134190f111\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.7 Harmonised uncensored headcount ratios and sample details by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.8Uncensored hd & stats Region\", \"is_hidden\": false, \"nrows\": 1493, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"2f2ac88b2196261b811a9bca010e787d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.8 Harmonised uncensored headcount ratios and sample details by subnational regions \"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-01-29T03:04:52.746293\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-01-29T03:05:36.872098\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"readme\", \"is_hidden\": false, \"nrows\": 4, \"ncols\": 1, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"6.1 Harmonised MPI\", \"is_hidden\": false, \"nrows\": 162, \"ncols\": 110, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"d38dd290da893e1381feaa007aa01b6d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.1 Harmonised MPI results by country and survey period \"], \"hxl_headers\": null}, {\"name\": \"6.2 Harmonised MPI Age\", \"is_hidden\": false, \"nrows\": 897, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"f9719e7eab69ecf4ec05614bc041ad13\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.2 Harmonised MPI by age group \"], \"hxl_headers\": null}, {\"name\": \"6.3 Harmonised MPI Area\", \"is_hidden\": false, \"nrows\": 311, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"51e19b5db95463a685168ef14e0db8cb\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.3 Harmonised MPI by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.4 Harmonised MPI Region\", \"is_hidden\": false, \"nrows\": 1495, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"171f338ddda10fb3073f2e8d7e60f267\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.4 Harmonised MPI by subnational regions \"], \"hxl_headers\": null}, {\"name\": \"6.5 Uncensored hd & stats\", \"is_hidden\": false, \"nrows\": 160, \"ncols\": 90, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ea027c617d2209b98b959ae03eface78\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.5 Harmonised uncensored headcount ratios and sample details by country \"], \"hxl_headers\": null}, {\"name\": \"6.6 Uncensored hd & stats Age\", \"is_hidden\": false, \"nrows\": 895, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ddaae4cff8f35f28e0774ef575649aec\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.6 Harmonised uncensored headcount ratios and sample details by age group \"], \"hxl_headers\": null}, {\"name\": \"6.7 Uncensored hd & stats Area \", \"is_hidden\": false, \"nrows\": 309, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"9241f49cd24be09d6120ce134190f111\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.7 Harmonised uncensored headcount ratios and sample details by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.8Uncensored hd & stats Region\", \"is_hidden\": false, \"nrows\": 1493, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"2f2ac88b2196261b811a9bca010e787d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.8 Harmonised uncensored headcount ratios and sample details by subnational regions \"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-19T22:34:27.666043\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-19T22:35:06.791453\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"readme\", \"is_hidden\": false, \"nrows\": 4, \"ncols\": 1, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"6.1 Harmonised MPI\", \"is_hidden\": false, \"nrows\": 162, \"ncols\": 110, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"d38dd290da893e1381feaa007aa01b6d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.1 Harmonised MPI results by country and survey period \"], \"hxl_headers\": null}, {\"name\": \"6.2 Harmonised MPI Age\", \"is_hidden\": false, \"nrows\": 897, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"f9719e7eab69ecf4ec05614bc041ad13\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.2 Harmonised MPI by age group \"], \"hxl_headers\": null}, {\"name\": \"6.3 Harmonised MPI Area\", \"is_hidden\": false, \"nrows\": 311, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"51e19b5db95463a685168ef14e0db8cb\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.3 Harmonised MPI by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.4 Harmonised MPI Region\", \"is_hidden\": false, \"nrows\": 1495, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"171f338ddda10fb3073f2e8d7e60f267\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.4 Harmonised MPI by subnational regions \"], \"hxl_headers\": null}, {\"name\": \"6.5 Uncensored hd & stats\", \"is_hidden\": false, \"nrows\": 160, \"ncols\": 90, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ea027c617d2209b98b959ae03eface78\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.5 Harmonised uncensored headcount ratios and sample details by country \"], \"hxl_headers\": null}, {\"name\": \"6.6 Uncensored hd & stats Age\", \"is_hidden\": false, \"nrows\": 895, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ddaae4cff8f35f28e0774ef575649aec\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.6 Harmonised uncensored headcount ratios and sample details by age group \"], \"hxl_headers\": null}, {\"name\": \"6.7 Uncensored hd & stats Area \", \"is_hidden\": false, \"nrows\": 309, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"9241f49cd24be09d6120ce134190f111\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.7 Harmonised uncensored headcount ratios and sample details by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.8Uncensored hd & stats Region\", \"is_hidden\": false, \"nrows\": 1493, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"2f2ac88b2196261b811a9bca010e787d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.8 Harmonised uncensored headcount ratios and sample details by subnational regions \"], \"hxl_headers\": null}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-24T02:47:01.549581\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-24T02:47:15.280923\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"readme\", \"is_hidden\": false, \"nrows\": 4, \"ncols\": 1, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"6.1 Harmonised MPI\", \"is_hidden\": false, \"nrows\": 162, \"ncols\": 110, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"d38dd290da893e1381feaa007aa01b6d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.1 Harmonised MPI results by country and survey period \"], \"hxl_headers\": null}, {\"name\": \"6.2 Harmonised MPI Age\", \"is_hidden\": false, \"nrows\": 897, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"f9719e7eab69ecf4ec05614bc041ad13\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.2 Harmonised MPI by age group \"], \"hxl_headers\": null}, {\"name\": \"6.3 Harmonised MPI Area\", \"is_hidden\": false, \"nrows\": 311, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"51e19b5db95463a685168ef14e0db8cb\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.3 Harmonised MPI by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.4 Harmonised MPI Region\", \"is_hidden\": false, \"nrows\": 1495, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"171f338ddda10fb3073f2e8d7e60f267\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.4 Harmonised MPI by subnational regions \"], \"hxl_headers\": null}, {\"name\": \"6.5 Uncensored hd & stats\", \"is_hidden\": false, \"nrows\": 160, \"ncols\": 90, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ea027c617d2209b98b959ae03eface78\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.5 Harmonised uncensored headcount ratios and sample details by country \"], \"hxl_headers\": null}, {\"name\": \"6.6 Uncensored hd & stats Age\", \"is_hidden\": false, \"nrows\": 895, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ddaae4cff8f35f28e0774ef575649aec\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.6 Harmonised uncensored headcount ratios and sample details by age group \"], \"hxl_headers\": null}, {\"name\": \"6.7 Uncensored hd & stats Area \", \"is_hidden\": false, \"nrows\": 309, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"9241f49cd24be09d6120ce134190f111\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.7 Harmonised uncensored headcount ratios and sample details by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.8Uncensored hd & stats Region\", \"is_hidden\": false, \"nrows\": 1493, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"2f2ac88b2196261b811a9bca010e787d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.8 Harmonised uncensored headcount ratios and sample details by subnational regions \"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx", "id": "2359037c-3cef-46da-a608-db360cb18b41", "last_modified": "2025-02-24T02:47:02.590787", "metadata_modified": "2025-02-24T02:47:16.146804", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "Trends Over Time MPI Database", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "position": 4, "resource_type": "file.upload", "size": 6646282, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx", "url_type": "upload"}]} diff --git a/tests/fixtures/input/download-global-mpi-trends.csv b/tests/fixtures/input/download-global-mpi-trends.csv deleted file mode 100644 index 6a19f809..00000000 --- a/tests/fixtures/input/download-global-mpi-trends.csv +++ /dev/null @@ -1,2578 +0,0 @@ -Country ISO3,Admin 1 PCode,Admin 1 Name,MPI,Headcount Ratio,Intensity of Deprivation,Vulnerable to Poverty,In Severe Poverty,Start Date,End Date -#country+code,#adm1+code,#adm1+name,#indicator+mpi,#indicator+headcount_ratio,#indicator+intensity_of_deprivation,#indicator+vulnerable_to_poverty,#indicator+in_severe_poverty,#date+start,#date+end -AFG,,,0.2342396091002832,46.93584855784794,49.90633306897293,27.381337677259033,20.80265720520784,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,,,0.2683302947167732,52.177907473390185,51.42603598153431,26.33666305841249,25.971520762600047,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF01,Kabul,0.0690103842271989,15.17210480615544,45.48504318214362,26.14070854580882,3.72262947605406,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF01,Kabul,0.0682261841995196,15.141620203922148,45.058707906203374,34.91696223745277,4.07776818451707,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF02,Kapisa,0.1819301627064206,39.42392078074232,46.14715104523276,47.576064387475355,13.816467031379329,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF02,Kapisa,0.2991068319435595,61.34659409346423,48.75687662266253,28.60380398798812,27.012816101295776,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF03,Parwan,0.2093680599162132,45.17402498393562,46.34700139973509,31.91871110509199,14.48247561033218,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF03,Parwan,0.2178787980701533,43.49506482952624,50.09276315005013,32.62928625380289,18.92662553980459,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF04,Wardak,0.2605316402520018,57.68701050980978,45.16296440906707,32.30811971918164,17.27629729038381,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF04,Wardak,0.2544219126289489,51.01137879157041,49.875521629890166,32.54016082286255,22.57344424545409,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF05,Logar,0.1728567815435286,36.66186664240214,47.14893085765773,29.481874525395753,12.33812822303586,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF05,Logar,0.2152146368047337,42.040645774760236,51.192038761198376,41.91458830759707,18.69303275731644,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF06,Nangarhar,0.2381322209647288,47.192281000675464,50.45999386241154,29.25477527083231,20.89535720121804,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF06,Nangarhar,0.2612984527808712,53.36797011006234,48.96166225584143,26.632085078612437,25.224168999398177,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF07,Laghman,0.328380705068071,67.45746032172647,48.67967212253728,23.98344097870078,27.845383531222012,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF07,Laghman,0.2901553481024364,57.410637633764495,50.54034584207261,28.26324995159864,26.610343846251972,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF08,Panjsher,0.0945551396547142,21.644930896537932,43.684657671897746,42.98080739975418,4.802694690896081,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF08,Panjsher,0.1137132983470339,26.57726315318061,42.78593235565166,45.77101200405791,4.00625104259761,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF09,Baghlan,0.228250924811212,45.82198084064512,49.812539882332665,30.23655821457329,18.42833643146875,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF09,Baghlan,0.3332076610715736,68.55033732470044,48.60773470643597,21.07229923341584,30.01195528204884,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF10,Bamyan,0.2243304994719899,47.80837781005374,46.92284276267891,36.3083211650491,16.231578808236797,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF10,Bamyan,0.1556905495726319,33.71610444259227,46.17690926830622,37.08245064844201,10.29237753477225,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF11,Ghazni,0.2072030398747716,41.57244087932408,49.84144194858272,36.12199955659289,20.012681336697792,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF11,Ghazni,0.2336578567150298,46.04372550413546,50.746948505294974,34.662991534450214,19.30736635288519,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF12,Paktika,0.1148121340176378,23.692405156859948,48.459467604704045,50.18226055779582,4.9688363667063795,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF12,Paktika,0.335182205740524,65.69787733039878,51.01872683874876,30.92840793355131,28.42275633426364,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF13,Paktya,0.1854387261768522,39.65106282418762,46.767655888339135,40.5364817379634,12.86557569097145,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF13,Paktya,0.2251068393398232,45.12861429461045,49.88117691145391,40.40184971069584,19.64880598558743,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF14,Khost,0.1973095077283256,39.09421264796166,50.470260011391524,40.47632127404367,19.4642287014861,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF14,Khost,0.2231369237047075,46.24976493500104,48.24606655153854,34.36362069256503,16.8045467027129,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF15,Kunarha,0.2649525423619651,57.44486732219992,46.12292702773336,30.319415189046662,17.66657929441837,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF15,Kunarha,0.2505362168272867,49.51602097054089,50.59700111532407,33.13874186593159,22.66701332067743,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF16,Nooristan,0.5352048895677759,88.78327337780357,60.28217582047169,10.38318597959095,60.109251041059174,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF16,Nooristan,0.4187032679280187,77.13951906927599,54.278698257374124,18.436575128057132,41.1213332569922,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF17,Badakhshan,0.2992959959931137,60.43513459790122,49.52350945926537,24.73802457531387,28.89213368737859,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF17,Badakhshan,0.3049651312851919,64.26941898538597,47.45104843013085,26.743625133677888,22.82059813519044,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF18,Takhar,0.24229007080687,48.197257780701406,50.270509560791865,28.73517777770892,22.87837000728759,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF18,Takhar,0.2454641811583498,50.36225191964617,48.739715124334,33.04956524930078,20.61157646106261,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF19,Kunduz,0.2582299286864747,54.642950765090546,47.25768375807562,28.07558442547474,19.023210627750988,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF19,Kunduz,0.3044800708524171,59.40169950840587,51.25780463727817,23.44663298906009,26.982853132706104,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF20,Samangan,0.3087457406175251,62.69451994323606,49.24604908005756,27.937189284959207,28.20726291139184,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF20,Samangan,0.3971851212851546,74.65605300676268,53.2019984031537,19.0333620050728,44.043629649731145,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF21,Balkh,0.1996939270136706,39.4960994379619,50.56041732104152,25.264378332824737,18.06039754948355,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF21,Balkh,0.1755107714844558,36.34072650149936,48.29588959296519,21.4309383692813,13.383606287472949,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF22,Sar-e-Pul,0.2970446534093166,62.42347935665779,47.58540479811223,27.757704500356787,25.53548526106327,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF22,Sar-e-Pul,0.3242799342545917,63.21124895260636,51.300985129676114,20.303674246883848,31.510802153808946,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF23,Ghor,0.2290405575970594,51.74292351965891,44.26509791431461,33.68589133082084,13.75814867614931,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF23,Ghor,0.4131914619928321,79.14399578092566,52.20755635545187,17.00059267951675,48.40212100394673,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF24,Daykundi,0.2559743923386561,57.83621011490603,44.258500311500256,36.26343561574729,16.914901183395813,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF24,Daykundi,0.2281076364864539,47.12380850075315,48.40602738694353,30.677839945821578,18.03590567727799,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF25,Urozgan,0.5064433458975905,90.4026903542734,56.0208268042601,8.98136590266015,64.5204666615046,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF25,Urozgan,0.3911065114257065,75.9663475636441,51.48418003090646,17.865224229133688,41.25542061318781,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF26,Zabul,0.1638593517366171,33.9200762802212,48.307483268297815,30.79322110363033,12.785963783295479,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF26,Zabul,0.4293675499563963,79.06402806093317,54.30630850549269,17.860792769464222,44.04996592434233,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF27,Kandahar,0.4115825226536733,69.87927671069671,58.899081677339446,16.56655543600919,46.53179243354218,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF27,Kandahar,0.3810759074346548,69.01248025476647,55.218404849075874,19.30844551268075,41.23681649238472,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF28,Jawzjan,0.227213256549572,49.243545148424126,46.140718720541415,25.9318422469394,11.45496535110209,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF28,Jawzjan,0.2173587664863936,43.88619569183062,49.52782146183033,30.289783399337512,17.16239523983271,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF29,Faryab,0.1462540176556068,31.33111746850893,46.68011532068955,28.69282357182498,12.03663516354135,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF29,Faryab,0.374859564697179,68.35643654986775,54.838956449069585,16.3815455203478,41.374536320814634,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF30,Helmand,0.2904141871544592,63.638129303555026,45.63524891958693,20.39843823836097,23.01469147730669,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF30,Helmand,0.4208928944789729,74.53287364033521,56.47077241513963,18.96621559407536,47.9185051308949,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF31,Badghis,0.41605935637341,77.91066297114452,53.40210704246018,17.23669550603218,47.32589970109111,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF31,Badghis,0.4437192082847886,81.27213462394239,54.596721291736706,13.968036894661509,56.386463832479365,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF32,Herat,0.2903702040466276,56.5790549268076,51.32114780323908,18.899362326754453,30.75408318410995,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF32,Herat,0.2346634565747845,45.19886386351004,51.91799893099369,23.079207363893183,23.43018077325302,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF33,Farah,0.2826586607884265,58.486081497410204,48.329218431387424,23.80439932856315,24.08853996940578,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF33,Farah,0.3951097238141087,72.77356137366272,54.293031199253896,17.87257589594713,45.03902353811504,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF34,Nimroz,0.1877590881769605,41.31795026519302,45.44249822942746,32.45028499433297,11.18367179962858,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AFG,AF34,Nimroz,0.2378086714577301,47.79127699874982,49.75984874058733,26.12381380121648,21.66503449678763,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -ALB,,,0.0078036683926114,2.06269312659819,37.83242544411473,7.33142804756343,0.15688104641654,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,,,0.0027298534678841,0.69868923748504,39.071067957341036,5.01045518654115,0.06714862699912,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL01,Berat,0.0010894190402605,0.28013632463829996,38.88888888890346,3.4675177664933496,0,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL01,Berat,0.0016461849740118,0.46741929099696,35.21859293613406,2.48668057232634,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL02,Dibër,0.0189010687692334,5.10702587798533,37.009933414885424,17.21464537508761,0.34102995736829,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL02,Dibër,0.0074970994110455,1.75700390032588,42.66979378733852,11.62320427530407,0.50483661355807,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL03,Durrës,0.0025488160900525,0.74140414847041,34.378228059701485,7.3351828993381,0,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL03,Durrës,0.004147693159677,1.168909203722,35.483450266881924,1.4640802821749999,0.11012702145362,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL04,Elbasan,0.0178918817461829,4.63687513389556,38.586076246464515,9.60761023428679,0.60634062054831,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL04,Elbasan,0.0018815563092313,0.46459175323663,40.49913275737829,4.66033890293349,0.09962750770821001,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL05,Fier,0.0017486389608175,0.47361671077216,36.920972614472056,6.3342754271039095,0,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL05,Fier,0.0035496877918535,0.83579145591302,42.47097486747871,4.332473564860409,0.14844681098495,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL06,Gjirokastër,0.0012180529988072,0.31321362826453003,38.88888888890999,3.3902071732503702,0,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL06,Gjirokastër,0.0016523557483733,0.44310600548787005,37.29030362732365,3.04059556432047,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL07,Korçë,0.0080350759442162,2.11203726074586,38.04419596924455,11.1156991529717,0.44433050369770005,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL07,Korçë,0.0002746579620268,0.08239738860799,33.33333333335,7.20050552152726,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL08,Kukes,0.0348343209013627,9.04715219406944,38.503078266105874,16.59996206875777,0.5623596687088099,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL08,Kukes,0.0083747444676741,1.95980867053327,42.73245951807787,14.00293682095273,0.28605313989266,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL09,Lezhë,0.0060146266489979,1.71731049448126,35.02352468191695,9.84877594968875,0,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL09,Lezhë,0.0021304434409086,0.63913303227237,33.33333333334459,7.64175075656982,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL10,Shkodër,0.0151850537546337,4.00415425270931,37.92324869692309,10.28224893264575,0.12763523704345,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL10,Shkodër,0.0026802748839081,0.62198520332346,43.09226119185002,4.55513054674475,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL11,Tirane,0.0023073236961868,0.61297683455711,37.64128701297367,2.20109945411587,0,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL11,Tirane,0.0025344941058678,0.67687519412666,37.4440388399509,4.25488767368879,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL12,Vlorë,0,0,,4.66242619043745,0,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -ALB,AL12,Vlorë,0.0004854952784135,0.12484164302058,38.8888888889,5.059677363562,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ARM,,,0.0014206932237347,0.39585710264127005,35.889042138070494,3.27561294723715,0.01090981862182,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -ARM,,,0.0006040731708453,0.16836919680984,35.87789110424977,2.24521596643376,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BDI,,,0.4637924114682906,82.29553196142557,56.35693705530505,12.046828438623509,54.34965110999506,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BDI,,,0.4088610942404933,75.09747264803728,54.44405514906221,15.761258464600381,46.0684486466776,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,,Centre-East,0.4924882204305332,87.02343722624542,56.592595756721444,10.03460480740269,58.65435598488725,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BDI,,Centre-East,0.4268999310632774,79.75931226255686,53.52352207576472,14.395108983497378,47.2449748628231,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,,South,0.430291245044799,79.63288490275637,54.034366024821125,16.12557882732517,46.33625951635588,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BDI,,South,0.3671255900528386,71.06845840270456,51.65802077379341,18.45469829349032,38.47603964966879,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,,West,0.4915645395966708,86.35220240335903,56.9255358769575,11.10654894921317,56.286152297836345,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BDI,,West,0.4011628069137695,74.78817869951271,53.639868477821814,17.711056227429932,44.560013881665064,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI002,Bujumbura,0.1374025658617728,30.99976291900775,44.3237473205072,22.91717198880767,7.94213898200245,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BDI,BDI002,Bujumbura,0.1136647058953908,24.26807750869031,46.837128262297654,29.74032562667955,9.63872848940996,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI013,North,0.5220744396185425,89.48327362478834,58.3432432085184,8.74186389669239,66.11294901812664,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BDI,BDI013,North,0.4909009347530288,84.9647491292686,57.77701220610367,10.864783909786931,59.230722572743375,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BEN,,,0.4297643171977915,73.42998701718224,58.52708609320996,13.40603450182135,50.904878518271936,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,,,0.3420844610531341,63.167333759787816,54.15527942876452,16.48340052022184,37.16012715648382,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,,,0.3617478647085561,65.96370398281843,54.840441465018465,15.030999316447542,40.180938740673014,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,,,0.2895098005186794,55.92332799756519,51.7690579021485,17.84124037385115,30.78320544265142,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ01,Alibori,0.645170760626275,95.93627467484258,67.24992843561589,3.353848862447,82.05728455331482,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ01,Alibori,0.551861403357014,88.64100859355895,62.258023922926654,5.6360250062499,72.56912502764514,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ01,Alibori,0.5471321150857535,89.07504026793148,61.42372918833586,6.80804451282311,67.77229154024084,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ01,Alibori,0.4596474702614586,80.27002253149456,57.26265619037451,10.17787159849805,56.56994983495218,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ02,Atacora,0.5790624895767882,88.91940722929064,65.12217159563352,6.98732809700906,73.94360047405468,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ02,Atacora,0.4516082913995768,78.61884671934376,57.44275199199289,11.67378613306494,52.04599334141439,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ02,Atacora,0.4721724090998011,80.9416195845501,58.334934675550784,11.35338276207775,57.55688444321646,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ02,Atacora,0.4135529020880421,78.67509561608176,52.564651984167256,10.30780807315489,45.84627131765424,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ03,Atlantique,0.3880425787792574,70.28016274734219,55.213671057404056,14.407250346839609,43.61337256660212,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ03,Atlantique,0.268032129000904,53.16003272218913,50.41985779083742,18.9286574841047,27.286930297477053,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ03,Atlantique,0.27767900870934,55.51531077312851,50.01845524095434,15.23594352374735,27.50356431830457,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ03,Atlantique,0.2204456265459873,44.21602793281523,49.85649703337146,18.051322714966638,20.85160229375844,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ04,Borgou,0.4928354217491002,79.95427844044312,61.63965598366404,9.993646067739501,60.55255940165149,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ04,Borgou,0.4434794162932316,73.71384200605627,60.16229845363317,10.15401460587055,50.378948694328315,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ04,Borgou,0.4620699552842891,76.82506474985237,60.14572936434487,9.492167712283731,55.905348706649605,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ04,Borgou,0.3813998037295289,67.66723503244123,56.3640295848762,13.521439966047092,47.2030910036364,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ05,Collines,0.4360763241829876,77.64183238108885,56.16512526940345,13.897640561735269,50.22112880712152,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ05,Collines,0.3328876003316306,66.30765117177755,50.2034975525294,17.57898978666509,33.34834867722137,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ05,Collines,0.3021075399985386,60.92040385503754,49.59053467823604,20.68258821526019,28.07507320254703,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ05,Collines,0.2330225418079443,48.71841075322133,47.8304891734459,22.62225790940895,21.93439764850686,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ06,Couffo,0.4547836626003109,80.99110727244219,56.15229596386251,13.56860427638682,53.59116121877402,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ06,Couffo,0.3841009600583251,72.88886788756062,52.69679324020296,15.717751674736661,41.44401124023193,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ06,Couffo,0.3902824184865424,72.88429673841542,53.548217647936035,17.27921596359261,43.45442653606651,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ06,Couffo,0.3529807831591452,66.93858092129823,52.73203857938902,18.627760441920348,36.93441983534093,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ07,Donga,0.5325628913406897,87.51276428437271,60.855452995419846,8.46046368616744,64.55672284979663,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ07,Donga,0.3699708242008431,69.93229918069342,52.90414136748173,14.89456205693951,39.928529148311796,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ07,Donga,0.371763187204153,70.94811987544308,52.39930076467459,15.741586122720431,38.87126191917901,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ07,Donga,0.3440956201488796,66.14308989785965,52.022912851553116,17.78282215617967,38.93681052373605,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ08,Littoral,0.1037674678539908,22.788705103211228,45.53460470176895,27.24772693756107,7.41080759751998,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ08,Littoral,0.0722811600482869,16.5793274898693,43.59716043515872,20.634418807463458,4.5722627643383005,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ08,Littoral,0.0775902074382527,17.35276975908733,44.71344258896774,21.67568801444885,5.63273510025849,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ08,Littoral,0.0769632563070839,17.632115377504327,43.64947407574042,15.422300065675252,4.74912363442217,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ09,Mono,0.4302597393327498,77.69788367659683,55.37599210856589,14.10023016474106,48.636744967869575,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ09,Mono,0.2849144765355874,57.5840394201674,49.47802887822475,25.64473532303748,26.255929562104356,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ09,Mono,0.2797819261622101,56.47328367489342,49.542351348447276,20.97871727465314,25.23590634412738,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ09,Mono,0.2654286952094065,54.75686365469775,48.474050099586854,23.45587966594524,23.863227694525722,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ10,Ouémé,0.3457616480885362,62.8836329667751,54.98436266734481,17.60437449676545,39.49032808013231,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ10,Ouémé,0.2657136169482661,52.94340674696573,50.188235565988506,21.58628425957895,26.56435261999238,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ10,Ouémé,0.2248811338406976,46.64335818873521,48.212895163069206,19.33130222040069,20.64082563436223,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ10,Ouémé,0.1674507518766162,36.58728527718941,45.767471023879,24.25399058858505,13.971753515205021,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ11,Plateau,0.4912591362380896,84.85914240475574,57.89112667376642,8.93278631069982,59.42718818212814,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ11,Plateau,0.3545488600590564,65.71058355209675,53.95612714015273,15.59128753505528,38.57140790835731,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ11,Plateau,0.3901252355552951,72.88818632226233,53.52379517723554,15.14221852150864,43.4301113118482,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ11,Plateau,0.3515987663164415,67.85446513618514,51.81659977877305,16.43029769467733,38.32362046684041,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ12,Zou,0.4170765435910136,73.73601344096346,56.56347883859287,14.780908220629229,48.95546174452091,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BEN,BJ12,Zou,0.3432560905821802,66.04833153142464,51.9704408307218,20.301266155518892,35.30390364164566,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BEN,BJ12,Zou,0.3012739934283257,59.219784583165634,50.87387526802465,19.84926342693545,31.536357200907812,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -BEN,BJ12,Zou,0.2512302996292836,51.24423165968286,49.02606429885115,22.626443159122182,24.69622463152571,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BFA,,,0.5122023889977398,83.68689806976644,61.20460918156356,7.67199228022003,63.11728332723807,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,,,0.3428919647288923,64.4746155426333,53.18247528008258,15.80998855519263,38.33152154492114,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF13,Centre,0.2058495290697765,44.54795575848499,46.20852417690762,20.74208909252317,19.06232420626911,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF13,Centre,0.0882857812471181,20.60484815417555,42.847091415826384,25.91439807297748,6.21184159312519,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF46,Boucle du Mouhoun,0.5509509156667494,90.93254742967804,60.58896745335578,5.6954114346907,68.1966528924559,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF46,Boucle du Mouhoun,0.3954341890517827,73.59225015433653,53.73312926598716,13.7657049044999,44.35706982009432,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF47,Cascades,0.4875643595205563,82.76403392864295,58.91017346265672,9.30115202727507,60.78289184938402,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF47,Cascades,0.3076118342430067,60.650285480163326,50.71894250911916,16.67649754264355,32.1099934861311,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF48,Centre-Est,0.5509089691955017,91.23931864283875,60.38065358116764,4.85256158909304,67.66071337236447,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF48,Centre-Est,0.3702275212680433,74.90767833811603,49.42450887303187,11.837030926664829,39.89482804030395,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF49,Centre-Nord,0.5571752561998544,93.20400892699142,59.78018141218592,4.18715128212279,69.629595252419,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF49,Centre-Nord,0.4542316321124491,82.9627852913963,54.7512514818563,9.63956323907543,51.789302865832475,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF50,Centre-Ouest,0.5231989731253963,84.32825977000802,62.043136494496466,7.3526910466425,63.81960189212364,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF50,Centre-Ouest,0.3768677608766507,71.34366518168403,52.8242780794788,17.02069779751675,43.24861156616367,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF51,Centre-Sud,0.5035882565330374,86.35009461621735,58.319363605938534,10.25502380748676,60.702266409603986,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF51,Centre-Sud,0.3404178618939434,68.94137920727727,49.37787230372232,17.95968840741704,36.97671200277021,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF52,Est,0.6540377685090677,94.75675486412757,69.02281208837275,3.12123895228087,82.77788668721088,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF52,Est,0.5276079124445917,85.56204069474637,61.66378316371639,8.07860551077621,66.86868734528247,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF53,Hauts-Bassins,0.4410282065214356,75.81857407964286,58.16888696141422,10.81602018543191,52.98860399840927,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF53,Hauts-Bassins,0.2708816161891116,54.37347012439497,49.81871040590051,19.691808462155493,27.14099133200777,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF54,Nord,0.5642512385020886,89.80878452424122,62.828067598419146,4.91563200420036,72.51200790466055,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF54,Nord,0.3948309973983493,74.1038317107148,53.28078026244084,14.91809116514395,44.930958768924924,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF55,Plateau Central,0.5171817266515651,88.58078454160672,58.3853179138014,6.65193264241122,62.9047856093412,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF55,Plateau Central,0.3705577419196496,72.10971926452878,51.38804390019713,14.987044260422069,41.24605545860216,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF56,Sahel,0.6574976857827288,97.19607867237326,67.64652388899451,1.44672462862524,86.93627024478683,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF56,Sahel,0.6137677418598312,88.11192009165737,69.65774224660709,6.52767674130222,80.33939595552505,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF57,Sud-Ouest,0.6124691926798179,91.76103727153385,66.74610606977286,4.25487802488953,76.08942811511822,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -BFA,BF57,Sud-Ouest,0.4739394538087099,86.0119570402776,55.10157774770478,7.14364918651665,55.2131807097109,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BGD,,,0.1746908992321566,37.56210507901661,46.50721754403069,21.591416775646792,13.52839585582834,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,,,0.1018261473856608,24.20621587972994,42.06611553478256,17.8560438825035,6.20003387232683,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD10,Barishal,0.1953991431024698,41.30755660302923,47.30348613457823,24.80053525824222,15.650900338159952,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,BD10,Barishal,0.1225616878382497,28.914128418401603,42.38816611198581,22.64975490112563,7.070211305221901,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD20,Chattogram,0.1734206833578057,36.80380830243588,47.12030938013764,21.01430048975073,15.093918032965071,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,BD20,Chattogram,0.1114930457188839,25.375603552258692,43.937101038512985,18.90750412621906,8.119282794110159,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD30,Dhaka,0.1586452031726262,34.14413961089292,46.46337701888205,20.74116905593231,12.028397321796309,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,BD30,Dhaka,0.0967593059850786,23.01446586131121,42.042820619068635,17.2008478457607,6.10912991677381,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD40,Khulna,0.13127633686236,30.484378445053327,43.063478266082925,23.70246442441085,7.664453414906689,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,BD40,Khulna,0.0608379241261219,15.523524473813621,39.19079344948272,17.03622694577001,2.16819850590716,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD50,Rajshahi,0.1671826789071222,37.20438226356815,44.93628673169328,20.516606038724593,11.43127074925962,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,BD50,Rajshahi,0.0942729501189518,23.598393589805,39.94888455444682,16.79011428806784,4.2014024333284095,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD55,Rangpur,0.1714506332925352,39.12582545961815,43.82032360428786,24.87293279152473,9.39248380782774,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,BD55,Rangpur,0.1028721754624428,25.47024448510037,40.38915901361733,17.06651641148581,4.73435598025436,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD60,Sylhet,0.2915642191818338,56.81959331647287,51.3140278139416,18.448766775195118,29.654807310920578,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -BGD,BD60,Sylhet,0.1568745860463769,35.07787119247358,44.721809138758786,18.57812523580704,12.86435625871892,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BIH,,,0.01536537796395,3.9496687433106805,38.90295354508751,7.11919385669343,0.39747961485422,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -BIH,,,0.0083074962435723,2.1901334941735398,37.93146064234385,4.07418760386208,0.06203161518297,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -BLZ,,,0.0302628190616136,7.35975068917544,41.11935354837964,8.54251049656966,1.5037835241975102,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,,,0.0199021615890313,4.94681879681124,40.23224299596407,9.36196512921331,0.81879993613972,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,,Belize (ex. Belize City South Side),0.005428505476351,1.45586780289609,37.28707692794878,3.7237227624842704,0.34536768001767004,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,,Belize (ex. Belize City South Side),0.0047056970438525,1.37767926946159,34.15669487203332,4.00201329323106,0.06805968738765,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,,Belize City South Side,0.0095692408906112,2.68597823780458,35.626650863830974,4.4771274219869195,0,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,,Belize City South Side,0.0022121392877498,0.57007953823987,38.80404644200773,9.25945524813927,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ02,Cayo,0.0206452821959703,5.558816743532289,37.13970643121339,7.040554969431071,0.28073923333793,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,BZ02,Cayo,0.01835137848451,4.75661937140047,38.58071678984656,6.24029186138537,0.34375904114431,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ03,Corozal,0.0433071259426394,9.72485677144848,44.53240490881686,11.231158867434301,2.99859081248883,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,BZ03,Corozal,0.0102670179796667,2.7502124897720597,37.33172624969674,12.54556029527725,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ04,Orange Walk,0.0278877852843792,6.701178746045371,41.6162384876494,8.4732510155697,1.52602736317059,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,BZ04,Orange Walk,0.0219863591016378,5.75673279210153,38.19242597433724,9.1627271364457,0.56844456763103,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ05,Stann Creek,0.0282719737260717,6.8701117620614305,41.15213071524838,8.62390481234759,1.1844162137529999,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,BZ05,Stann Creek,0.0189956381304576,4.71468423393588,40.29037192719865,10.21623085842471,0.7783651162378,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ06,Toledo,0.1007463527178303,23.88445197312789,42.18072611889058,20.3118386732355,6.0050047901406,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -BLZ,BZ06,Toledo,0.0782513841034982,17.98569269575522,43.50757317340699,20.20079880286812,5.46476607794193,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BOL,,,0.1666496137551491,33.89544047210253,49.16579086567978,19.16520460311286,15.66509424997272,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,,,0.0952693918039613,20.61617074808092,46.21100250289188,16.00942217613722,7.29276442638062,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,,,0.0379805456896178,9.10274849047182,41.724261336423254,12.15858100105578,1.95091095014665,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO01,Chuquisaca,0.3048601313738004,54.728788275861895,55.70379702856655,12.85293788386741,37.50190353054795,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO01,Chuquisaca,0.1661061713446165,34.05814668422717,48.77134768508783,16.73357369917442,16.571365125882682,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO01,Chuquisaca,0.0943223520356404,20.95806889688863,45.00526861501215,15.084976301678541,7.1871964424857895,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO02,La Paz,0.1618874621645448,35.52693863041481,45.56752380176998,24.260327670528937,13.229548807546628,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO02,La Paz,0.0784823553653494,18.10540756226637,43.34746682472649,18.36638794281058,4.54867590565892,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO02,La Paz,0.0294295481388524,7.5958003648257,38.74449923030296,11.89399492353305,0.8538595582551101,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO03,Cochabamba,0.1709375523520512,33.88544567263611,50.44571465975737,14.30241322858511,16.738329654640268,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO03,Cochabamba,0.115531989938068,23.79237801326061,48.55840381893589,12.87695376387768,10.56177101116424,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO03,Cochabamba,0.0352245215277514,8.31736831516678,42.35056113063938,11.26864331937642,1.95082934397106,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO04,Oruro,0.1190893315842977,26.440928630200023,45.03976893166965,21.616735001530348,7.9242805557363,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO04,Oruro,0.0854318298274665,19.49248742258081,43.82808000609461,18.4539954213449,4.8313547725882495,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO04,Oruro,0.0295685428245387,7.41916498467961,39.85427320405595,14.57428511346902,1.17004335990464,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO05,Potosi,0.286098263027775,52.40629826064067,54.59234338683421,17.527467773447942,30.36516528635319,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO05,Potosi,0.1938763680783342,39.60291993215312,48.9550690733105,18.60823892154043,17.040726067262423,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO05,Potosi,0.1054492052153082,25.43955567931825,41.45088324047886,15.204842706861122,6.12886154896956,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO06,Tarija,0.1439874772119904,29.43354540075753,48.91951521690782,18.05907629877036,14.018705487973271,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO06,Tarija,0.0778570699023925,17.20740181141968,45.24626713297454,13.015410691534179,5.39400120313546,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO06,Tarija,0.0183959695629917,4.80778700596846,38.26286301817168,10.971961095409299,0.47782095632462995,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO07,Santa Cruz,0.0942181104491415,20.43206488013874,46.11286769196168,19.401181514423698,7.4691561653869005,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO07,Santa Cruz,0.0369558841330046,8.57770799647682,43.08363510180551,12.94978097919529,2.01694207988464,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO07,Santa Cruz,0.0203019257682561,4.66196190808023,43.54803013956054,10.32610019806737,0.943262255405,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO08,Beni,0.1949067540423353,41.77381938322602,46.65763315877186,20.61267271623222,16.30230716857945,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO08,Beni,0.0973618556237593,22.52760233566992,43.21891614253055,20.52114895260799,6.09501414803233,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO08,Beni,0.0418234562314998,9.32665258342817,44.842944301166234,17.79602449398082,2.9529420504338497,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO09,Pando,0.2048169567101299,40.87467922157181,50.108517206915906,17.29128417862125,22.09005489996651,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -BOL,BO09,Pando,0.1029380006301635,23.93801757737554,43.001890318375004,24.62844507657651,5.10803312564024,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -BOL,BO09,Pando,0.0594184233776963,15.541812665985821,38.23133417875836,14.87558148713561,1.90249509508716,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -CAF,,,0.453762397767655,78.80605155561528,57.579638721960855,13.650799598800658,52.355912216963375,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,,,0.5118203558695626,84.12289492404527,60.84198081053756,10.29005941230826,62.25068125030189,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Bamingui-Bangoran, Haute-Kotto, Vakaga",0.4422249300690193,80.69166873304077,54.804286119310596,15.365374310389829,48.33644996222653,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,,"Bamingui-Bangoran, Haute-Kotto, Vakaga",0.5237339488820838,90.58091544947496,57.81945857835993,8.53835697487587,65.04102937514908,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Basse-Kotto, Mbomou, Haut-Mbomou",0.5465939705371131,91.6358224154482,59.64850384154645,7.28950970426796,67.92400463214024,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,,"Basse-Kotto, Mbomou, Haut-Mbomou",0.6204157677602921,96.74676865334717,64.12780255052235,3.25323134665156,78.5693704152697,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Kémo, Nana-Grébizi, Ouaka",0.4929973877843844,85.74312178574374,57.49701871320877,12.11619500309961,57.885852529309425,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,,"Kémo, Nana-Grébizi, Ouaka",0.5689172086813913,91.5772350672626,62.12430504846832,7.9811463054356695,70.93724262745576,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Mambéré-Kadéï, Sangha-Mbaéré, Nana-Mambéré",0.5287689442365822,86.90718136964982,60.842951744979935,9.783568578909781,63.503412596193584,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,,"Mambéré-Kadéï, Sangha-Mbaéré, Nana-Mambéré",0.5666379916851874,90.32225491078273,62.73514675257979,8.17246099738193,71.04112880115477,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Ombella-M'Poko, Lobaye",0.4634412336549024,82.1857508645901,56.389487080123146,13.848034441613441,52.22662226759105,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,,"Ombella-M'Poko, Lobaye",0.4552316294094464,80.14748387832813,56.79924152086085,12.9582137666055,51.696629735005914,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,CF31,"Ouham, Ouham-Pendé",0.5421328722642655,90.20126090747877,60.10258247058673,8.15426311105005,65.30250884884147,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,CF31,"Ouham, Ouham-Pendé",0.6018459442147788,93.77167960596852,64.18205867099257,5.30396871492837,77.53200154422574,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,CF71,Bangui,0.1946543198576496,42.68368501826065,45.6039162912888,27.90408680993639,15.00394737683395,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CAF,CF71,Bangui,0.1876231521384514,42.65623305508742,43.98493225975904,27.848357470806974,11.91117903375871,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CHN,,,0.0409387649857119,9.47352877388308,43.213849836581666,25.09732687607997,2.06873943715091,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CHN,,,0.0175327265646745,4.2097576568243,41.64782867311315,18.53717378760086,0.4393742792256,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CHN,,Central Region,0.0280408187069328,6.84447676888783,40.96853514704707,25.397792171148147,0.7564183681735,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CHN,,Central Region,0.0126452187413503,3.14588427831195,40.196070874341174,19.535091245676732,0.1355377164518,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CHN,,East/Coastal Region,0.0223391484559745,5.47671276193231,40.78933737633649,18.711848903417298,0.68091363092802,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CHN,,East/Coastal Region,0.0091120587004313,2.24612243397425,40.56795196292388,13.50049077000073,0.17048547057351,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CHN,,Western Region,0.078918188377935,17.46417264625727,45.18862128567423,32.47581088477643,5.32149555334583,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -CHN,,Western Region,0.0357854571706074,8.37408681425834,42.73356362830683,24.69539219191354,1.2015699660282602,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CIV,,,0.3096297003752849,58.76070354628031,52.693327630330124,18.51292075945001,32.657186905353356,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -CIV,,,0.2282859083037614,45.12440150184202,50.59034595604389,17.65706825131174,23.11377310379192,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -CIV,,,0.2102151008803955,42.77338584740303,49.14623818426539,19.6058334395189,19.73355055340037,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CMR,,,0.2581188118036197,47.64251077850445,54.17825542479149,17.819144744661138,27.64626874052271,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,,,0.2395134266805766,45.40210408587992,52.75381648117611,17.538423115949612,24.75715033922694,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,,,0.2293801270379968,43.23733466322839,53.05140310442754,17.492000320101937,24.14996859463916,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,,Douala,0.0192823012187313,4.91874018937491,39.20170709642983,11.073382294844961,0.48765652901577,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,,Douala,0.0196668055358811,4.89381107279783,40.18709599395602,12.77930083840596,0.7337784197128,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,,Douala,0.0087731451484429,2.3832690934149503,36.81139143155668,13.290455971275831,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,,Yaoundé,0.0191972850096382,5.11127828882818,37.55867695875237,16.17942421208997,0.23350304964479,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,,Yaoundé,0.0149598117510203,3.9701753733487797,37.68048094661859,8.49019128973733,0.24120871723792,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,,Yaoundé,0.0055672725232401,1.41505577817819,39.34313126799615,15.00701214848277,0.09288878835172,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM001,Adamaoua,0.2808642820401983,51.787127405689084,54.23438142068947,21.89097331593319,29.8058311364466,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM001,Adamaoua,0.3062648795303605,57.000786063750354,53.729939651679594,18.64390360699626,34.65184006222989,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM001,Adamaoua,0.3768967481010075,65.6934779720774,57.37201922254827,15.507384583890149,43.92459957024108,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM002,Centre,0.1686153485021534,37.88447006084858,44.50777541069729,25.99835355492996,14.146183040165768,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM002,Centre,0.1501591801874302,35.42129213707524,42.39234966537528,24.03069077551572,9.56254452813683,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM002,Centre,0.1940337184699336,42.7817620298881,45.35430736452095,20.3587413709489,15.188181496684619,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM003,Est,0.3009234685170967,60.57915174132915,49.674427565778636,20.14323625218939,31.873974393948263,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM003,Est,0.3052875017301537,57.889294107126744,52.73643537010583,15.52816491695524,33.62371707412906,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM003,Est,0.3016101982551235,58.146248532191855,51.870964313053,14.96716038244195,33.031865623491456,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM004,Extrême-Nord,0.5385076142489468,87.29927232604486,61.685235157256656,7.24898267260459,66.76199728151167,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM004,Extrême-Nord,0.468489681195168,79.25778785179328,59.10960851837196,13.321448559983509,56.595209439955156,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM004,Extrême-Nord,0.4280981127634856,75.3032284671695,56.849901588233564,14.83668349406176,49.21713013361297,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM005,Littoral,0.120084004141321,27.317243809437958,43.959048350197236,19.5791374151321,8.813609093413529,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM005,Littoral,0.0790811169182472,19.30027948367371,40.97407863194036,22.16009939666224,3.35726561230666,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM005,Littoral,0.0933759577012836,22.41163292856137,41.66405812504869,20.60088110513292,5.4307607535284,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM006,Nord,0.4607691029824235,77.08494050005353,59.77420492166087,15.77542037872266,53.99309366702427,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM006,Nord,0.4115497104538522,72.51886864917527,56.750707522039164,13.60525013243277,47.29697412849491,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM006,Nord,0.4234335147874542,72.62630671831653,58.30304939362466,14.36345560046448,51.658683910221505,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM007,Nord-Ouest,0.1928271657654838,43.78422345018139,44.040330185343265,25.514126632411973,14.430176093043531,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM007,Nord-Ouest,0.1756387436557577,40.28564151705133,43.59834845410534,24.78552107071137,12.94273670160643,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM007,Nord-Ouest,0.2241142643251053,47.36786684429338,47.31356492404626,20.003504740786653,19.12800319333843,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM008,Ouest,0.1891375422037027,40.54211651955363,46.652113515701835,23.79228711775205,17.8393651613606,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM008,Ouest,0.1395436981529028,33.52417409532783,41.624798199682026,23.93492971669259,6.76817314261162,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM008,Ouest,0.0988073483298827,23.44454739222204,42.145129388449185,28.78554066948021,5.7526085183587305,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM009,Sud,0.1356957377996529,33.258096859544004,40.80081261796932,29.939036471327192,5.38753504562405,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM009,Sud,0.1275449823527747,30.362937151320768,42.00679984190086,26.093967097923098,8.89099295282802,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM009,Sud,0.1300552635293191,32.60628741142294,39.88655987978469,20.53988116502194,5.44089510547603,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM010,Sud-Ouest,0.1499488260196892,33.92097601886037,44.20533947381593,22.62457431804734,10.50181517417683,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -CMR,CM010,Sud-Ouest,0.1404536988148073,33.58011273002486,41.82645244344996,25.140698478521873,7.5667280652421605,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CMR,CM010,Sud-Ouest,0.0345957964810048,9.0594625743826,38.187471052456466,14.615752932391471,1.32800126314008,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -COD,,,0.4283702869381149,76.71549106061892,55.83882485997859,12.58540367961389,52.975398752782496,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,,,0.3751540758009525,71.92885916606073,52.15626664324563,18.01318747683416,42.07393420242146,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,,,0.3296531720319419,64.17354210190337,51.36901614507649,17.56750446337024,36.655314976932715,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,,Bandundu,0.5113022614923304,91.40143060784322,55.94029087860416,8.374840786176959,64.26485991356363,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,,Bandundu,0.3875418437901662,77.58945098966703,49.94774919103077,20.49575746839723,41.4543762867158,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,,Bandundu,0.4187202534583015,84.21706819705747,49.71916767258489,14.11819623262468,50.62468646717991,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,,Kasaï Occidental,0.4602551517365727,84.50335969233403,54.46589974792755,12.58816668296745,55.69084470380613,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,,Kasaï Occidental,0.4581019837913742,85.61063505528804,53.50993874715776,13.76576041877743,54.33861395362412,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,,Kasaï Occidental,0.5050717086990457,91.6935397682049,55.08258378680036,7.67090700777244,65.79331604766891,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,,Orientale,0.5204473851679126,90.03522583270198,57.804862525138404,6.396665918978151,68.53119791419238,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,,Orientale,0.3891902378705329,74.22558742070315,52.433433185869184,20.462970073300728,40.29149711164945,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,,Orientale,0.3562886926101625,70.3357909760174,50.65539004624932,19.98041981568132,35.550836738305755,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD10,Kinshasa,0.1094055708104741,23.52613123518267,46.50385127787653,26.92590814398581,10.36872830677138,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD10,Kinshasa,0.0811385437404664,19.6149680220169,41.36562631628669,22.34015209200668,3.7422290130847697,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD10,Kinshasa,0.0655899256089493,15.43242462443084,42.501374349896295,18.34703166043231,3.27287858220622,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD41,Équateur,0.532894256228999,91.94852914540179,57.95571296048821,7.576363158297029,71.47956748046546,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD41,Équateur,0.4460974513668058,83.94887148855798,53.139183821858495,13.721723858573101,54.917161438926186,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD41,Équateur,0.4084875370413203,79.44997368269918,51.4144332725275,16.90763860935308,46.30477691460564,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD52,Bas-Congo,0.3958425113890822,72.6724501997325,54.46940488467795,11.80311220655608,46.85274410041946,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD52,Bas-Congo,0.3216439680205048,63.35575929548426,50.76791306697043,24.50056283219104,31.91874687969293,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD52,Bas-Congo,0.2720725158431607,53.43452067741418,50.916993807368605,22.48669158215787,30.15671619386638,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD61,Nord-Kivu,0.5218773250782051,88.97679705226047,58.65319300847398,8.192033165314589,62.31232671215682,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD61,Nord-Kivu,0.3740912046037189,68.79110390659994,54.380753231062485,19.49418299963454,42.5072991045626,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD61,Nord-Kivu,0.3462125856099355,66.11297396710634,52.366814686356314,17.140896405210302,38.5714720936737,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD62,Sud-Kivu,0.4727392649761028,81.53512563211098,57.979829099560945,12.043834645805159,63.44815535866748,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD62,Sud-Kivu,0.4298227147304887,78.00964995264617,55.09865958780765,15.326188660569889,49.886013976788476,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD62,Sud-Kivu,0.3203300961398865,62.306488361606405,51.41199649718594,20.47497432770575,34.23493434221465,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD63,Maniema,0.4696784867455232,88.08443622703976,53.32139329755324,10.59792983554669,53.61741106604085,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD63,Maniema,0.4193174296799278,80.35057180003578,52.18599199560907,15.73152855152168,45.11015956794162,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD63,Maniema,0.4381165575971912,85.13895962920397,51.45899826651284,14.140738752037851,55.285051291441725,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD71,Katanga,0.3775020568786923,65.70215402416794,57.45657238875786,16.97844472377087,44.78707045262378,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD71,Katanga,0.388072367778151,72.50243189859317,53.52542771543656,15.044712796019569,46.720279775678456,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD71,Katanga,0.3329341773110455,63.65393258436091,52.3037876520521,19.7245859529414,35.77692573486164,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD82,Kasaï Oriental,0.436052071798688,82.32221340576434,52.96894407459589,12.60138910670992,48.75004436733342,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -COD,CD82,Kasaï Oriental,0.3917751058133962,77.12545982860965,50.79711766827838,18.26880643874613,44.026707020504865,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -COD,CD82,Kasaï Oriental,0.3926161085316292,75.98400709552824,51.67088753795602,18.22952343996544,42.40618723724964,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COG,,,0.2582505502970371,53.75067287362438,48.04601254094466,22.75430378457916,25.61841268050362,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -COG,,,0.1136719071005534,24.68575034525974,46.04758028851293,21.35181003330093,9.61480564041562,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,,Sud,0.3895585477422524,78.19553831622567,49.81851345109527,15.1522178770978,45.24828644603118,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -COG,,Sud,0.2431571826103958,51.088621679620125,47.59517376202657,26.23377502790104,23.02436818003518,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG02,Brazzaville,0.1096303511542012,25.404861788376493,43.15329564373402,29.088084972497708,6.06371808297095,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -COG,CG02,Brazzaville,0.0243556549543201,5.8413996572465,41.6948957157998,19.311533052786558,1.52803317286824,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG08,Nord,0.3680870468414399,75.25611336367734,48.911248586895276,19.1008305721205,36.71196007334325,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -COG,CG08,Nord,0.250160763025591,53.538663530558864,46.72525358852188,26.05023903456707,21.87141434864077,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG10,Pointe Noire,0.139732682250555,31.80376630021213,43.93589140718313,31.03198560494845,8.875760425568199,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -COG,CG10,Pointe Noire,0.0652632939590647,15.153786760765819,43.06731709333259,17.87588161319052,3.9774239469019,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COL,,,0.0240766189356819,5.95334420789988,40.44217517900791,7.63010351566548,1.03615713158746,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,,0.0196595349635455,4.84673934140109,40.56239376360258,6.23227894593719,0.82613147387204,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Antioquia Sin Medellin,0.0458169005387932,11.43662468767119,40.06155818699231,14.403560416787082,1.95907083271528,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,Antioquia Sin Medellin,0.0510586775320873,12.11444279043821,42.14694676042987,13.745495715352721,2.18893898022849,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Atlantico, San Andres, Bolivar Norte",0.0089950277808387,2.38070449256801,37.78305039083628,3.9521406787752698,0.21010897908532003,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,"Atlantico, San Andres, Bolivar Norte",0.0079394097745799,2.05373051529623,38.65847887756923,3.2571972925772603,0.17583129231855998,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Barranquilla A. M.,0.003736054990319,1.0092709030471299,37.01736549661066,1.87937134348065,0.051037304934849995,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,Barranquilla A. M.,0.0037282544807501,1.02630910663291,36.32681866169593,1.19420711233293,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Bolivar Sur, Sucre, Cordoba",0.0525333394761849,13.079150352708279,40.16571264914539,15.86476370088411,1.69289210591206,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,"Bolivar Sur, Sucre, Cordoba",0.0391099115251267,9.8949630223785,39.52507092414143,12.78436227961376,1.20733294743403,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Boyaca, Cmarca, Meta",0.0215781877906983,5.5743556658439,38.7097434828489,9.16692327635229,0.72329971008599,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,"Boyaca, Cmarca, Meta",0.0105126807534665,2.7914297335696303,37.66056020340174,7.312181963368861,0.16487191302467,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Caldas, Risaralda, Quindio",0.0139901837901735,3.7565847938362795,37.24176228666065,7.72697701570743,0.36536004478830997,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,"Caldas, Risaralda, Quindio",0.0082328817867177,2.18344949175289,37.70584947265394,5.43551915954375,0.26001821241796996,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Cauca Y Nari Sin Litoral,0.0509316015110229,11.99236074988432,42.470037862657,11.06822833271409,2.97120433438663,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,Cauca Y Nari Sin Litoral,0.033755284399097,8.358546795327861,40.384154357986105,12.552145719126958,1.5757531507889802,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Guajira, Cesar, Magdalena",0.0502265262843187,11.468944860079871,43.7935022768685,8.342203535367961,3.42698605233034,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,"Guajira, Cesar, Magdalena",0.0566016789438267,12.789271614294739,44.25715603737923,8.444765175703969,3.8317518608020897,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Litoral Pacifico,0.0787580982084096,18.890249093960023,41.69246144752627,15.58654462861636,4.12243354950093,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,Litoral Pacifico,0.0851546950480699,20.79011588911237,40.95922095973732,15.709338426709829,3.5925853749713097,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Orinoquia Y Amazonia,0.0406797165872543,9.68847451101856,41.98774176573401,13.217310655593332,2.19570623042123,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,Orinoquia Y Amazonia,0.0305184750718053,7.41639615256904,41.15000661235396,7.477686352570791,1.6622306076030597,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Tolima, Huila, Caqueta",0.0349093768751417,8.86764045121994,39.36715416820848,10.794679171188019,1.10958778477004,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,"Tolima, Huila, Caqueta",0.0274296847153324,7.091342866145429,38.68052248084581,10.64163705136003,0.9064259427284701,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Valle Sin Cali Ni Litoral,0.0099490941714727,2.46610106297395,40.343416256732,7.15020403717941,0.41627077448661,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,,Valle Sin Cali Ni Litoral,0.0061891628300914,1.6836585977088199,36.76020090126257,4.189770175498571,0.16259040930951,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO11,Bogota,0.0025410640140256,0.72262933540694,35.1641414141408,1.21198274286084,0.02463509097978,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,CO11,Bogota,0.0012729250002591,0.34225591714822,37.1921984830976,0.9386167749360399,0.0635489367672,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO17,Cali A.M.,0.004310889577925,1.06418276337737,40.50892127066244,2.43814483389438,0.17546867999993,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,CO17,Cali A.M.,0.0018743323859258,0.5427664540979099,34.5329445431735,1.30168889614497,0.02108884578429,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO47,Medellin A.M.,0.0018976968794987,0.55796585224328,34.01098601050648,2.36493446693771,0,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,CO47,Medellin A.M.,0.0014860716541279,0.41491240919135997,35.8165150332361,1.0903280254969399,0.02368158950144,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO68,Santanderes,0.0284617989850308,7.159483166671091,39.75398547974316,10.78840380268802,1.06334349721533,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -COL,CO68,Santanderes,0.0176262878136666,4.53932883255567,38.83016292464302,6.19943307388831,0.45664770754886996,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COM,,,0.1707246001111339,34.624078966834084,49.30805532030716,22.22935711915564,15.12039035615252,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -COM,,,0.0848162025597889,19.36045058338277,43.80900237548571,19.45654754333205,5.67971351737119,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -COM,,Ndzuwani,0.2350812806400865,45.07556732026068,52.15270591490071,21.05166694606241,23.16648778828812,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -COM,,Ndzuwani,0.1225053712707688,26.43051994216215,46.34996645500998,20.41918403604214,9.83697781417464,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -COM,KM2,Ngazidja,0.092052052843133,21.47878032499375,42.85720671765367,23.81381577205397,5.42396476153627,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -COM,KM2,Ngazidja,0.0471820303271856,11.98726650592206,39.36012459877851,17.99965019060973,1.84905867699954,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -COM,KM3,Mwali,0.2269363132277586,46.18889644643005,49.13222239266088,20.24459434363674,21.227083138711052,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -COM,KM3,Mwali,0.11041048185692,25.851580711231996,42.70937359313921,22.78274175501403,6.774592007735671,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -DOM,,,0.0298178973849629,7.267962526794141,41.02648751288409,10.651458943813271,1.3094394141219001,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,,,0.0142368269983446,3.6859621386027803,38.624452620507185,4.89272747036951,0.40877131081051,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,,,0.0108792434291359,2.81118449774108,38.69985565827458,3.86006492130265,0.3574255039268,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,,Ciabo Norte,0.018035043333478,4.61573130669251,39.0729921980691,9.58962572469943,0.34671166146177,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,,Ciabo Norte,0.0097542936417133,2.60642976811443,37.4239650001002,4.217299582743831,0.2840470509815,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,,Ciabo Norte,0.0071406350101177,1.9489152235603098,36.639023205294144,3.43936746269776,0.21116773472021003,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,,Del Yuma,0.0438801801539103,10.45626519113836,41.96544306383756,14.0249419757411,2.08623086633879,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,,Del Yuma,0.0285127202592671,7.428626393409051,38.382224046917564,7.626398482656629,0.66160835597267,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,,Del Yuma,0.014998121182713,3.8972891871551902,38.48347008003487,5.8362091568754,0.32245395518673,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,,Metropolitana,0.0157101669547632,3.7543017971854997,41.84577533575135,6.61878965965446,0.99813149278158,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,,Metropolitana,0.006937262679978,1.8782834597095601,36.93405616770275,2.70157807512204,0.15309091443458,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,,Metropolitana,0.0077252496767797,1.9958729511009798,38.70611940764181,1.6065375019366501,0.28503538877499,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO01,Cibao Nordeste,0.0241663271645619,6.30061643185654,38.3554965231253,13.167154795046109,0.52064917560809,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,DO01,Cibao Nordeste,0.0137717900329234,3.66851923772206,37.54046017072245,4.66822574842339,0.16665408247228,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,DO01,Cibao Nordeste,0.0076152337505626,2.0344821236046,37.43082164354557,4.86914832099049,0.12931776479459,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO02,Cibao Noroeste,0.0360976339239075,8.86326528037557,40.72724078769519,12.927537554686811,1.14899010130378,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,DO02,Cibao Noroeste,0.0277570423312853,6.9313629027155095,40.04557649176163,7.36678253633414,0.9874048647663299,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,DO02,Cibao Noroeste,0.0211542398870388,5.36262659704956,39.44753471867225,6.1795757005304,0.51829582901379,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO04,Cibao Sur,0.0221958810276292,5.730686658830289,38.73162563063548,12.64734377701267,0.5077106237328399,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,DO04,Cibao Sur,0.0107170725639348,2.91958185754,36.70755980435093,5.132863704425239,0.13030960200174,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,DO04,Cibao Sur,0.0098455274055929,2.56254598681338,38.42088085933687,4.260910523946531,0.5229915527665899,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO05,El Valle,0.0944415746529229,21.74053365370022,43.44032035149651,16.20182111741553,6.41955300240519,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,DO05,El Valle,0.0461311923740721,10.8230772852865,42.62299081684048,13.502052159250361,2.60959621501663,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,DO05,El Valle,0.0300709103724329,7.150644543559389,42.053426357932786,8.62062077871375,1.17549547846526,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO06,Enriquillo,0.0741260476174457,17.43811646385383,42.50805858023491,14.67226002148073,3.7321635483684905,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,DO06,Enriquillo,0.0359517114013106,8.79020021277781,40.89976397699077,8.23045071316366,1.7245976605651698,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,DO06,Enriquillo,0.028668564723691,6.902716506974279,41.53229340177193,7.3002198528418205,1.45643036947555,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO07,Higuamo,0.0505311158296611,12.69684254000757,39.79817475914837,15.952467033126668,1.62089959262369,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,DO07,Higuamo,0.0194309383095274,4.99283841006538,38.91761902479228,6.541742055795741,0.31873291581968,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,DO07,Higuamo,0.0102507372430116,2.75883575058971,37.15602583742249,5.54996955551391,0.23104121246161,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO09,Valdesia,0.0410611465150193,9.87569972166971,41.577961736646415,12.14595586277697,1.8893828243326902,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -DOM,DO09,Valdesia,0.0170806609910908,4.420187765314109,38.64238783050208,6.71560981190593,0.46273611442123,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -DOM,DO09,Valdesia,0.0109618975042465,2.95810668243419,37.057140532964326,5.29033806268183,0.23498485402026,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DZA,,,0.0080941828596531,2.1049672034949602,38.45277421051518,5.089706767828471,0.24700210738845,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,,0.0054090931224494,1.3808349300643599,39.172626681722925,3.60716807806754,0.20280777334682,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Centre,0.0269216973420185,6.38674223805811,42.15247200927278,5.67438521617043,1.66708050595199,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Centre,0.0192122833485713,4.362449438768929,44.04012841462977,4.84564539604896,1.3743858226972798,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Est,0.0061253450207186,1.68602685817359,36.33005601911907,7.250839213265831,0,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Est,0.0038034845605433,1.02898376438032,36.96350411159181,3.7516161826628003,0.026219565761389996,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Ouest,0.018843204732034,4.86364539031719,38.74296586167255,5.72520811316733,0.61734011499971,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Ouest,0.010036950480921,2.63335271945622,38.11472123261035,5.4666731002455,0.16429678978328,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Nord-Centre,0.0035335343659255,0.97539938610214,36.22653875194743,4.48040876996137,0.03922855282034,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,Nord-Centre,0.0028622755901281,0.74350976656756,38.4968122657202,3.28396864262485,0.10909488728903999,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Nord-Est,0.0032058226570204,0.85681146993491,37.41572994189659,3.5554199057112696,0.05707000333003,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,Nord-Est,0.0027126658120796,0.71495237976367,37.94190898387245,2.77141572533231,0.07763718896378001,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Nord-Ouest,0.0067971553804046,1.9112339974486698,35.56422389659346,4.68554383343196,0.09521879047524,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,Nord-Ouest,0.0044658942764251,1.20721468620238,36.99337265746663,3.8037654976006,0.059205176556709996,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Sud,0.0160871414442597,4.04957055740608,39.7255492062946,6.10236220144579,0.61547687740969,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -DZA,,Sud,0.008730617931024,2.3307434637767197,37.458510843046724,3.4553071280421896,0.31959144039515996,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -ECU,,,0.0186560805824483,4.65894059317377,40.04361122308142,7.618290112932249,0.81234202964179,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,,,0.0112867631714733,2.95973133470042,38.134417942416945,6.35767972516882,0.26193487620899,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC01,Azuay,0.0168654641354229,4.37147423629121,38.5807240848152,5.79297599727918,0.44841979159444995,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC01,Azuay,0.003805132957977,1.02469737135719,37.134212152190386,6.2091903181481,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC02,Bolívar,0.059115697366403,14.00869965721204,42.19927531672701,12.31511104163522,3.9167148944299797,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC02,Bolívar,0.0315335434116244,7.8730999841488405,40.052258291031315,10.98057303808075,1.3172643123474401,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC03,Cañar,0.0195535125436517,4.93209856044994,39.64542132318601,7.5959363963535695,0.6121314564803599,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC03,Cañar,0.0085348773165281,2.24041952585272,38.09499612926117,8.079711920662561,0.27968653088233003,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC04,Carchi,0.010993589456192,2.77270985381633,39.64926023925854,7.18610253306448,0.25526793307639,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC04,Carchi,0.0094913681388773,2.56576459844795,36.99235753980984,7.27935460800645,0.31489755643583,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC05,Cotopaxi,0.0318506780952107,7.83007275098558,40.6773718560937,11.510012778641231,1.93654291851693,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC05,Cotopaxi,0.0165554793585911,4.33177326075019,38.21871174236839,8.481877000100619,0.36441031742387,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC06,Chimborazo,0.0475246365717202,11.7655896165653,40.39290687549411,15.54471738301014,2.35273163269138,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC06,Chimborazo,0.0225534476610403,6.05078581370702,37.27358454822408,10.01417489536842,0.28485103149811003,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC07,El Oro,0.0072916478699871,1.9731194056666301,36.95492451721916,4.7292006806505,0.16683220485198,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC07,El Oro,0.0037253363050469,1.05143287818159,35.43104255489622,4.70544851831756,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC08,Esmeraldas,0.0304996254290823,7.679225577266379,39.71705886511988,12.91817099080245,0.7740198803573201,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC08,Esmeraldas,0.0161158629100806,4.36194020159853,36.94654709886796,9.3830935231368,0.13797880021974002,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC09,Guayas,0.0082794536460933,2.1957386392914,37.70691783592789,6.15101596210122,0.26214982882883,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC09,Guayas,0.0059750911869193,1.63063129496183,36.6428094774123,4.3643662977326105,0.09374733112414001,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC10,Imbabura,0.0183709116828139,4.93613321947202,37.21721206863801,6.40540017864941,0.50811781210785,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC10,Imbabura,0.0120624897607589,3.1902938214803904,37.80996496166483,8.132544076821189,0.27269127794845,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC11,Loja,0.0232866672808921,6.05526116793139,38.456916448489544,7.69044713128013,0.69767812874065,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC11,Loja,0.0161373651557824,4.14594994595873,38.92320304424389,7.884441913193379,0.39557896562479,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC12,Los Ríos,0.0247425492931485,5.85345451639413,42.269994964256654,11.89340056234434,1.28048796240898,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC12,Los Ríos,0.0114229219244422,3.04238872055813,37.5458988762837,7.4643395274510596,0.24445058187743998,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC13,Manabí,0.027274682318664,6.7216839202649705,40.57715691812657,10.69280447757588,1.5462092277147101,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC13,Manabí,0.0202460278453859,5.04591958165931,40.12356423391141,11.32389558635578,0.58874287837919,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC14,Morona Santiago,0.095013057865241,21.29574641369479,44.61597918171132,16.64539617446957,5.91459752469774,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC14,Morona Santiago,0.0713447548785701,16.9160327058226,42.17581989777827,15.45764765826307,3.76119197822642,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC15,Napo,0.0475113425270628,11.89684832698248,39.9360748504336,15.24254844123711,2.66339391014706,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC15,Napo,0.0319382041305186,7.89536551324286,40.45183731766289,13.576597635299132,1.20171056660461,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC16,Pastaza,0.0853612772013763,18.545757706926448,46.02738726037363,12.43136931058946,6.34304707842762,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC16,Pastaza,0.0452781977403571,10.271363657680011,44.081973192042604,13.52594496733746,3.09666202214381,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC17,Pichincha,0.0076002056189096,2.07587487062139,36.61206042074495,2.5024839349379597,0.1362228179099,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC17,Pichincha,0.0048981063220231,1.43752232669374,34.07325389713157,2.23135554176979,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC18,Tungurahua,0.0145385118749831,3.74426772532987,38.82871883500867,7.22600410874799,0.30582845223127003,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC18,Tungurahua,0.0094312121319243,2.6999740505635703,34.93075101946149,5.61247910814898,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC19,Zamora Chinchipe,0.0239806536194418,5.89196105289471,40.70063159643617,11.017053637629989,1.24127658216468,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC19,Zamora Chinchipe,0.016450316426316,4.1332506966009905,39.7999483550419,11.21035953342604,0.62729162090901,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC20,Galápagos,0.0032858246811479,0.9857474043441801,33.33333333334,1.0816979029757199,0,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC20,Galápagos,0.0022565656939797,0.60294248992513,37.42588607845335,8.21137988128339,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC21,Sucumbios,0.0339870824869451,8.16028310149822,41.64939140494416,13.51178773973573,1.7515425816000698,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC21,Sucumbios,0.0168593494889363,4.26564962076084,39.52352159183955,9.45231604345527,0.59807024452214,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC22,Orellana,0.0693182085744984,15.908665072537229,43.57261169207773,11.64294970526785,4.45014383531207,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC22,Orellana,0.0439165772342132,10.97395657170699,40.01890926690808,12.90450945808392,1.43450071994254,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC23,Santo Domingo,0.0112790813369573,2.86984602032036,39.30204358385131,7.87843850052423,0.27140040264681997,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC23,Santo Domingo,0.0089360219151667,2.41857554675887,36.94745829685519,5.40259117706489,0.20016529348415,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC24,Santa Elena,0.0177931401579775,4.34254743264547,40.97396846886695,12.612342837386558,0.7404493879132801,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ECU,EC24,Santa Elena,0.0133532223508266,3.62417450804574,36.84486583408754,8.47262516941009,0.12177708395487001,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -EGY,,,0.0319777678740994,7.98124668552558,40.066131437953004,8.03034819985913,1.12021950471425,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,,,0.0183819612406224,4.89177278226531,37.57729980277207,5.97692654757062,0.55026531054103,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,,Frontier Governorates,0.050784864832959,12.614896224347468,40.25785383389939,6.780971707889,1.9850507367819101,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,,Frontier Governorates,0.0217076009133322,5.701765003849911,38.07172147339455,8.26531966196099,0.5651063968572501,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG01,Cairo,0.0109854416797196,3.07986775709076,35.668549905845296,1.13102488254745,0.26100574212633,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG01,Cairo,0.0095419847328261,2.7891955372870503,34.2105263157965,0.54315913094537,0.14679976512037002,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG02,Alexandria,0.0162907957462448,4.372937293729319,37.25366876311122,1.6226622662266,0.38503850385038,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG02,Alexandria,0.0068301584390019,1.98932383979522,34.3340702120424,0.23889476761975,0.11944738380987999,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG03,Port Said,0.0123886367456742,3.42914775592537,36.1274509803999,1.15985879979829,0.25214321734745,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG03,Port Said,0.0007056296978065,0.20708697653013,34.07407407408221,2.4160147261848697,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG04,Suez,0.0054467271858589,1.4811275680841,36.77419354839548,1.38557095078835,0,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG04,Suez,0.0050700513247334,1.3940907199332502,36.36815920398774,0.6450270495213499,0.14565126924676,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG11,Damietta,0.0054747379946827,1.50164242139833,36.458333333341905,5.25574847489418,0,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG11,Damietta,0.0127486096646612,3.2127969305156197,39.68072038283213,12.667552683600212,0.41477014839446996,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG12,Dakahlia,0.0152189870320556,4.13506239295309,36.80473372781891,3.18081722534853,0.22021042329336,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG12,Dakahlia,0.0061581630956168,1.7793060547414599,34.60991479912434,2.8202492002098003,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG13,Sharkia,0.0306692517593067,8.3369237397676,36.7872523686556,9.13399396811746,0.6031882809134099,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG13,Sharkia,0.0209714347033868,5.53824663706607,37.86655972132114,12.01400985584511,0.09950107312008999,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG14,Kalyubia,0.0133033633033666,3.9710289710291704,33.50104821803601,2.8471528471529903,0,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG14,Kalyubia,0.0097969892236348,2.70238080310179,36.253177984352966,4.11384553544326,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG15,Kafr el-Sheikh,0.0255551908981591,6.72792911060107,37.983739837407434,8.79553659337116,0.45946832950446004,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG15,Kafr el-Sheikh,0.0096734850148212,2.8120338004120002,34.40031557730174,2.27322156683729,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG16,Gharbia,0.0087406693956197,2.48013484228278,35.24271844660911,1.3243438478209,0.21671081146159998,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG16,Gharbia,0.0135048810661837,3.75640124456317,35.95164676758109,2.99658501134465,0.42924480889930006,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG17,Menoufia,0.0209050710320876,5.81428168219053,35.95469255664213,3.4434095399380795,0.22579734688119,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG17,Menoufia,0.0076587912394932,2.12509692639898,36.03972667953148,3.6305034340913402,0.18638639463929,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG18,Behera,0.0210381355932266,5.72033898305127,36.77777777778601,4.74576271186474,0.46610169491529,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG18,Behera,0.0137972387198267,3.50547803206784,39.359079114490655,12.0639293566468,0.61869491917203,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG19,Ismailia,0.0256101477199808,6.74373795761091,37.97619047619938,2.64932562620429,0.62620423892101,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG19,Ismailia,0.0118435609878344,3.35418646219831,35.30978710131755,2.2213001245318003,0.17132703998114998,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG21,Giza,0.0268593448940318,6.9595375722539,38.59357696567932,8.67052023121337,0.36994219653177,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG21,Giza,0.0259724069894836,7.17220264709602,36.21259502476496,3.5914661056784003,0.50104465426286,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG22,Beni Suef,0.0755201109570211,17.036523347202458,44.32835820896643,16.50485436893156,4.1377716134996,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG22,Beni Suef,0.0324205195542071,8.75667383010129,37.023783440192496,4.31998333351052,1.23651158861589,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG23,Fayoum,0.0828141225337662,18.95119418483793,43.6986301369981,20.43094496365415,4.95846313603298,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG23,Fayoum,0.037024040457925,9.32025632382078,39.724272779170974,7.65718251238021,2.10893304515521,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG24,Menya,0.0708084947839213,15.946348733233881,44.40420560748739,21.888971684053573,3.5022354694485003,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG24,Menya,0.0302260187062126,8.03349500927158,37.62499219994327,6.43043185435285,0.81955883216766,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG25,Assuit,0.0790994052676531,18.99745114698402,41.636851520584464,17.62107051826698,3.00764655904854,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG25,Assuit,0.0350871775565418,8.77663025010509,39.97796028392757,10.13298863945216,1.79716456180589,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG26,Souhag,0.0602582077345634,14.93165089379604,40.35602503913355,13.512092534174519,2.54118471784089,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG26,Souhag,0.0382208663453226,9.57494728796879,39.91757363860196,11.034717911373,2.01831846381398,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG27,Qena,0.040426867545523,9.39265536723187,43.04093567252572,17.23163841807961,1.9774011299435401,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG27,Qena,0.0122153073221253,3.4308308971942396,35.604515897635906,7.6571966859654506,0.1258714689306,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG28,Aswan,0.013495705377106,3.8122132015530497,35.4012345679092,7.7303212142604,0,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG28,Aswan,0.0162884260947978,4.26793726071547,38.16463340435153,6.95653858743171,0.30226887057081,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG29,Luxor,0.0203202799084955,5.12716996366551,39.632545931768206,8.55874041178808,0.40371417036735996,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -EGY,EG29,Luxor,0.0153746465835215,3.6827017025996702,41.74828108578103,7.001203812997139,0.6624557576815799,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -ETH,,,0.4913623623294923,83.46291200733216,58.871940903083576,8.05481185247895,64.02845253203589,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,,,0.4361839522741098,77.42768436725737,56.33436616871927,12.55330187956136,53.93347054155549,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,,,0.3667264280769861,68.77339535270099,53.32387999694467,18.31740367006488,41.86803377913982,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET01,Tigray,0.4622264775270027,79.49670366970129,58.14410613143096,9.07445443504287,59.498784588525346,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET01,Tigray,0.3770758809623693,72.09526679552779,52.30244615528077,14.72139835461547,44.35620768241167,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET01,Tigray,0.3049748507001339,58.04230164552659,52.54354876597809,16.216178473944,33.800192262745234,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET02,Afar,0.55818928973646,84.62227281924471,65.96245540801846,7.6664279619980995,72.94790967054729,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET02,Afar,0.5239464794685295,85.92005132599128,60.980699078101296,5.5355143401732,69.6214725988938,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET02,Afar,0.4865077604262327,84.66766521534127,57.460868820329814,7.630993849288881,62.29438222594348,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET03,Amhara,0.4944859812060592,84.9897419029648,58.18184290648018,8.96971844217627,63.24014512190404,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET03,Amhara,0.439415496246491,79.44618877875317,55.30982706674617,13.835106802145312,55.63551785805271,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET03,Amhara,0.3603275618177064,69.2821248963915,52.00873419465136,20.96568525865777,38.60993350181485,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET04,Oromia,0.5177685578329556,87.39095386498896,59.24738602039529,7.3129464510521505,68.23656104559417,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET04,Oromia,0.4765122690430155,82.03738440823587,58.08477104435542,9.68095461977362,58.85009134439771,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET04,Oromia,0.3848347562956123,71.59112768760933,53.754531982629715,17.099506470207128,44.3839984526237,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET05,Somali,0.5429945965793085,87.88406431878893,61.78533057024542,6.87137933788405,71.66308955247428,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET05,Somali,0.5182571083713284,87.24673306871617,59.40131969905911,9.02877089514902,67.87388313750658,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET05,Somali,0.5294925831669294,89.99626822336721,58.834948783959575,7.255758017301759,69.79394305031799,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET06,Benishangul-Gumuz,0.5125893506548663,86.65104393359621,59.15558859829568,9.316258236502401,64.92234026205998,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET06,Benishangul-Gumuz,0.4214730128593997,76.48308774160002,55.106694212367124,17.627685077301532,49.655947339669545,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET06,Benishangul-Gumuz,0.3409375528782989,65.37984189107918,52.147197517897105,25.57411821635019,33.56302325186165,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET07,SNNPR,0.5218677838156528,87.85883568940703,59.398440660029536,7.002160106064769,69.4451107858343,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET07,SNNPR,0.4358164000780935,79.1733288850283,55.04586029355482,16.45204794894385,53.24220465523166,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET07,SNNPR,0.3625548085001495,69.59171808436672,52.09740734675074,23.97782339162275,41.15003750606414,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET12,Gambela,0.358875653487135,70.1065454353043,51.190035289688105,18.33458269313457,36.599541745483634,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET12,Gambela,0.2672199102024221,56.60748851365466,47.205752669625,25.467900823766847,22.86337215275634,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET12,Gambela,0.2481331928392169,54.12123897749051,45.84765565740607,29.92592600490458,21.61259710134317,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET13,Harari,0.2676415428735838,48.045424017472236,55.705938358719266,16.71414985374239,31.08958131244528,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET13,Harari,0.2701954080118562,50.51931602033356,53.4835839628361,11.47436581641251,28.50307463605356,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET13,Harari,0.2410146476802298,45.96946728552007,52.42928881104242,13.15407394114034,26.667264323503346,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET14,Addis Ababa,0.0728628690946791,18.1136964445307,40.22528991683501,12.12839502137521,4.04546275036593,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET14,Addis Ababa,0.032357013900098,8.4304255045464,38.38123459207171,10.07098237817104,1.6578108392015198,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET14,Addis Ababa,0.0433102732670903,11.40579532441273,37.972164180773845,7.681794228733629,1.29410328665975,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET15,Dire Dawa,0.2843853224685984,48.67595138025749,58.4241939611975,12.993946130679952,35.32587158932609,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -ETH,ET15,Dire Dawa,0.2556630610890753,44.960033922171974,56.864516946682166,14.268863567886639,31.29368070858541,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ETH,ET15,Dire Dawa,0.1776791588090117,33.25179566696802,53.43445526628094,13.146412817940101,20.50923438865872,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -GAB,,,0.067995654612855,15.24636947410493,44.597931808186644,18.204469343027778,4.86287983367448,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,,,0.0348407787067384,8.2121763053848,42.425755866801104,14.304731278480709,2.17347604111004,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,,Libreville/Port Gentil,0.0124537484385206,3.37413782820162,36.90942419254496,15.888302526446878,0.07865097721561,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,,Libreville/Port Gentil,0.010421237847747,2.66159491098727,39.15410945793169,10.649835479752,0.23454177505618,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB001,Estuaire,0.0624397216790138,14.76369183690206,42.29275601848098,17.74484578751173,3.5408187043306603,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB001,Estuaire,0.0217804311724025,5.1362437666175405,42.40536890784289,12.604506566667888,1.4930895415427499,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB002,Haut-Ogooué,0.099554532094164,22.54873686223225,44.150824368752865,19.86094317491989,7.289171288330181,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB002,Haut-Ogooué,0.055830232082604,13.477411646329191,41.42504031759712,19.18250075296433,3.47493642923301,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB003,Moyen-Ogooué,0.129592579895997,28.196337545992762,45.96078468865349,28.314838340965633,11.0473614461243,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB003,Moyen-Ogooué,0.056101643298618,13.460100921212009,41.679957399284,23.39698701398972,3.06988061861631,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB004,Ngounié,0.1942242427678464,42.06397130215349,46.17353919645313,17.999372745226232,14.483464688830711,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB004,Ngounié,0.0937963256711673,20.45763555568942,45.8490549486213,19.56879114378453,7.667983228897709,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB005,Nyanga,0.1870367402473471,41.96052335699546,44.57445362538962,15.83014839030552,14.563973093402879,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB005,Nyanga,0.1074173487596757,25.2855807473989,42.48166171572927,21.963480615756588,8.51042262658051,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB006,Ogooué-Ivindo,0.2654594375128618,53.751760203826315,49.3861850302653,21.84564807036404,27.09468208895838,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB006,Ogooué-Ivindo,0.1764387029984397,38.57578949813589,45.73819623496388,25.67011666795789,15.26219008413989,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB007,Ogooué-Lolo,0.1773165669821045,36.95156539323844,47.986212517684216,24.63070948026188,15.88066829591205,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB007,Ogooué-Lolo,0.1057206201164411,23.84194724923242,44.34227582641965,18.64213603935285,7.93546450426206,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB008,Ogooué Maritime,0.086361565550434,20.28533938082715,42.57338954459856,22.004468517997232,4.90492224149863,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB008,Ogooué Maritime,0.0637799273714634,15.586204822812,40.9207553067152,17.825392913711973,2.9314277475032,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB009,Woleu-Ntem,0.1028476680349754,23.462383464780558,43.83513217630266,25.96362527674232,6.93213430976026,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GAB,GAB009,Woleu-Ntem,0.0538295928708893,13.188951169541118,40.81415737985646,21.12609351414662,2.75030038548199,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GHA,,,0.1803048153100547,37.45916949896727,48.13369269039068,21.20191316553612,15.445022284253959,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,,,0.1526021183773479,31.854815045681978,47.90551072373394,20.74458319471028,12.823252157869138,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,,,0.1297349420686136,28.415446858598457,45.65648490914231,21.29414528227531,9.71315867268577,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,,,0.1113660485401535,24.67987880588702,45.12422828980371,20.07772557550025,8.396263154929349,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,,,0.0968398068879741,21.27746403175301,45.51285188096526,18.14218842888062,7.31411874338179,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,,Brong Ahafo,0.1948442682355723,40.27770238464853,48.37521921554179,23.51833452101877,16.275294403070813,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,,Brong Ahafo,0.1768431879133817,38.02533957266972,46.50666894779968,24.2756814901407,13.686445458859481,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,,Brong Ahafo,0.1307208145441173,30.75478631715866,42.50421810643038,26.424088840900488,7.95119268890301,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,,Brong Ahafo,0.1103737397387242,24.55744455285738,44.94512427836537,20.95173785248654,8.33741264485994,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,,Brong Ahafo,0.1064694624664112,23.00976074020594,46.27143396600927,20.64887401913183,8.29260959370092,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH02,Ashanti,0.1089377652204348,24.888744767712588,43.76989126496908,21.263208197096812,7.29288343697225,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH02,Ashanti,0.0991602282772322,22.92220968618533,43.25945431735303,20.89454672723977,5.954672461364121,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH02,Ashanti,0.0768048318752287,17.744899586501788,43.28276500006386,19.69731420718929,4.35901267192505,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH02,Ashanti,0.0727256745756176,17.15092292191363,42.40335922838096,21.52565405785473,3.90526056787484,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH02,Ashanti,0.042365160222298,10.62673424384265,39.86658483234891,20.36592188400568,1.5997408108027098,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH05,Central,0.1711160776352284,39.06036466111039,43.80811063077361,22.984675659684502,12.63708385544408,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH05,Central,0.119818923974482,27.779834152400003,43.13161961916553,20.51071800062908,6.41372213712815,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH05,Central,0.1331744410321092,29.305331147327163,45.44375914491437,30.773307855073263,9.81170219777602,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH05,Central,0.0847589649637426,20.57456390931891,41.19599586038003,18.15964465051627,3.9519297418246504,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH05,Central,0.058995702383808,14.76905337703562,39.945486604808636,20.5698975608381,2.69653243587855,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH06,Eastern,0.131002632534295,30.94494999541993,42.33409087870051,29.10910367684011,6.59264858012235,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH06,Eastern,0.1003877005259339,22.862864179426403,43.908628305752615,23.48361075107216,5.37612685078021,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH06,Eastern,0.1181739529406764,26.584848758476,44.45161754136339,18.10154611240647,8.43219649982085,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH06,Eastern,0.0713246730036373,17.014111144190032,41.9208928395846,20.193196212005347,3.4611603949334304,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH06,Eastern,0.0566221738550587,14.11038631784838,40.12801108318112,16.713748167642102,1.6228163095927999,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH07,Greater Accra,0.0413921131297569,9.656448848386159,42.864736073939405,14.24824844675023,2.02120108425656,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH07,Greater Accra,0.03542015165806,8.599334148050799,41.18941193381661,14.22599162284835,2.19231792036459,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH07,Greater Accra,0.0427973938944622,10.05156319079003,42.57784891973443,17.34265698749626,1.9941299629513398,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH07,Greater Accra,0.033759885556028,7.97210976512335,42.34749213278753,11.820239408973,1.6343491087369901,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH07,Greater Accra,0.015404926101803,3.95800383162399,38.9209479251116,11.05965537035747,0.28816229117305997,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH08,Northern,0.4316488674528327,75.34769771739627,57.287598762712236,10.17901067977597,48.79902713391532,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH08,Northern,0.3984968185000804,71.24201690359284,55.935645258238544,14.43827341656713,45.29125577349421,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH08,Northern,0.3554994477158968,69.90894853834955,50.85178008661973,15.64283981447336,35.88754181367534,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH08,Northern,0.2956465308457741,59.38929297158744,49.78111643578835,19.01103973769337,30.7694807782479,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH08,Northern,0.2962370997918444,58.685731434296194,50.4785562949842,16.81882281578379,29.46590061907186,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH12,Upper East,0.3596777175156585,70.2106053015433,51.22840288456428,21.10172913177236,38.04972573505465,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH12,Upper East,0.3391972777885626,66.53293636205927,50.98185896120944,25.22749882105357,33.41757804571771,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH12,Upper East,0.2510173450982387,55.5401766492568,45.195633187025095,25.235852407969162,17.19586351270207,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH12,Upper East,0.214165671665525,46.34109392899577,46.21506604778721,28.19513963809503,15.97210917816325,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH12,Upper East,0.1292049118566403,30.12449115539326,42.89032176183615,24.53791127161065,8.3373980649621,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH13,Upper West,0.3079074781501333,64.9872291401612,47.379690167441005,20.34221038393274,27.792972629838296,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH13,Upper West,0.3209933381067802,61.550477499933585,52.15123442496877,19.54625424512513,33.357022028467945,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH13,Upper West,0.2370901396281694,51.05823699147308,46.435238190414665,18.34902762476817,17.64098100723266,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH13,Upper West,0.201744382555972,43.75406641330939,46.10871607915378,22.95636517945055,15.233001662172722,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH13,Upper West,0.1626876755818064,36.144682230960676,45.01012750430327,25.2511796182337,12.38747237464543,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH14,Volta,0.1766409931590038,38.513350089763236,45.86487354314955,27.565687258937437,13.384356464331551,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH14,Volta,0.1618554656047451,35.31196752051661,45.83586726248134,28.2496190372196,13.64602924796774,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH14,Volta,0.1326225323753113,29.762942916775593,44.55961654939704,25.060927910531188,9.20913742152671,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH14,Volta,0.1397757106184781,30.158518370827593,46.347008463679515,25.04032825449875,12.96135287110636,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH14,Volta,0.1214138337769949,27.80014110241439,43.673819254985844,17.46100527684277,8.21480944268702,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH15,Western,0.1514244960173433,35.05051974348755,43.20178334744331,25.58361593946717,10.229870884504031,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -GHA,GH15,Western,0.1387253318365982,30.486830524224,45.50336307553217,22.87804046210649,10.17182806190758,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -GHA,GH15,Western,0.0851959478744292,20.30664587956862,41.95471195966858,21.93069093291565,5.42838093092875,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GHA,GH15,Western,0.0819343991505881,19.81795021777709,41.34352859413854,20.20464888838935,4.42616217144972,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -GHA,GH15,Western,0.0582497612558668,13.408355554049189,43.44288232890421,17.439524941437192,4.39259237603345,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GIN,,,0.4209183986422195,71.23178601004801,59.09137229590796,13.91546830034542,51.183411243525576,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,,,0.3359318566589728,61.88584495942746,54.28250303105834,17.122097106137428,37.697165685391546,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,,,0.3635914910624256,64.95160645671193,55.978829608278744,16.49774356242441,42.32746507372474,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN001,Boké,0.3892350997166739,69.80827652890298,55.75772946571994,14.11202034230439,44.180523730473645,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN001,Boké,0.3253157270243904,61.09332558282996,53.24897996972338,19.882234015358378,36.347014000666974,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN001,Boké,0.4137199696281319,70.98970844857901,58.27886586233942,12.24423679256646,49.493392946117844,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN002,Conakry,0.0924983100968844,20.4723623466757,45.182040318812675,28.529309090949788,6.991551421616669,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN002,Conakry,0.0678956787852723,16.00875174783559,42.41160076359604,28.799256078212032,2.83980626396223,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN002,Conakry,0.053941267185887,12.20460801246158,44.19745978798332,31.5350153675792,3.2942566925836303,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN003,Faranah,0.5384925888013803,88.25010949850987,61.01891452162707,8.15595646442673,68.55110094452958,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN003,Faranah,0.5011467090017312,84.07063931460361,59.61019365231341,7.9226849125216505,61.13316659719336,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN003,Faranah,0.478708893661816,82.37737059311715,58.11169866373634,12.524937753111251,59.67703943406356,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN004,Kankan,0.572963884504861,87.91527738358617,65.17227739667392,6.7365808584352305,74.51181602012664,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN004,Kankan,0.4582529025597633,81.26721137319898,56.38841235185905,10.46300105114017,55.72120164090424,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN004,Kankan,0.4149421063970952,75.51871217321533,54.945601488191784,13.32415584209882,46.63471276131235,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN005,Kindia,0.4663157858604678,78.03581142812477,59.7566395897568,11.28476283476404,58.18026004686521,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN005,Kindia,0.3143258212655231,57.72715439862747,54.450253877921384,19.44672785004721,35.59659591553309,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN005,Kindia,0.3602977797256451,63.165982144057,57.03984446944024,15.83001344332326,41.66895162790215,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN006,Labé,0.4937573255342005,84.0711221226304,58.73090700680562,8.62642070859414,62.395547213237364,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN006,Labé,0.4541780252262597,80.61161589099041,56.34151110932153,9.52743761702185,53.21357152579645,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN006,Labé,0.4802452312277296,82.50798577416028,58.2059090064628,8.99845446681026,58.502718136751994,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN007,Mamou,0.4833905478508659,83.9280429295251,57.595832212693445,9.98402108368534,57.4489091388956,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN007,Mamou,0.4346229898624488,78.57600504615719,55.31243152501101,10.75666814662236,50.22402504879704,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN007,Mamou,0.3848520008518881,70.84067342981733,54.326417609957566,16.44665983669384,45.1686889425481,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN008,N’Zérékoré,0.4695235361962171,81.17687669781075,57.83956654849713,15.18505544646228,55.57037808497534,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -GIN,GN008,N’Zérékoré,0.3840009439791983,74.61770517633313,51.46244354094579,16.48240688859392,40.81823812271793,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -GIN,GN008,N’Zérékoré,0.417688434067097,76.79099755093316,54.39289075390078,15.98116794799612,47.99294718420247,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,,0.2810456988191593,54.65025703976231,51.42623549138601,21.32177199271927,30.666139947142717,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,,,0.2036376379674207,41.59676394982542,48.955163486527745,22.89760871062741,18.810648164342588,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,,0.1796849589559592,38.072770517274975,47.19513618648521,23.67667447629804,15.69587539443504,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Basse,0.4596298444589123,81.7026204352278,56.256438534097875,12.47514261737947,61.0976075825546,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,,Basse,0.3603241295497847,70.36552454856115,51.20748148493026,17.390588138735218,38.93867109232507,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,Basse,0.2999715418773575,58.686480438886704,51.11424976144781,23.777350063027818,29.37980062556224,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Brikama,0.1991803959874041,43.85515451778353,45.41778456318862,23.935787122386092,14.68377581827627,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,,Brikama,0.1271371342458659,28.32554780579639,44.88426318090457,28.24285952744582,8.999975199876099,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,Brikama,0.1292669860567026,29.80228303131993,43.37486021485429,24.91343774757852,8.37219254357084,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Janjanbureh,0.4285960362923621,77.55707016293381,55.262020005649646,12.46622634253393,53.46141248433764,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,,Janjanbureh,0.3921632694710014,73.53634968806156,53.32917273355871,13.90753929427996,43.44299041538381,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,Janjanbureh,0.3827429662375379,74.84101910894746,51.14080096642882,12.167027336587829,44.74411548309144,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Kerewan,0.350181314339377,66.72103076420981,52.48439814680137,19.21975118708021,44.054349297022064,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,,Kerewan,0.3249830002155426,65.64211278799365,49.50830898224592,16.29080503006297,30.944163554996152,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,Kerewan,0.2426250026221227,51.375615597512045,47.225712003706334,23.98299146967924,23.88238121824886,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Kuntaur,0.5228392017108284,89.77187025127921,58.24087214038831,7.5833421342132405,67.10186200735092,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,,Kuntaur,0.4693594955323274,81.87847263152901,57.32391927296293,11.28037841513074,55.79797986606303,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,Kuntaur,0.4184510284918581,78.43853285282309,53.34763582039614,13.64059539405535,49.23827704502317,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Mansankonko,0.306029157824396,63.329552287463386,48.32327827540586,24.41044212368708,28.735806879570557,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,,Mansankonko,0.198540605428942,44.99766996344763,44.12241913641747,24.586151861379747,15.373525100913179,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,Mansankonko,0.2462740214085291,52.54298662253433,46.87095980625292,20.98285231360078,21.31298335275425,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,GM01,Banjul,0.0679285249251987,15.591020283049458,43.56900555061845,28.209755282826222,3.2351911919286103,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,GM01,Banjul,0.0373728698462673,8.86955740291359,42.13611587201703,24.252075541443897,1.18149188593208,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,GM01,Banjul,0.0396235770006765,9.22810620784925,42.93792909207464,24.13163614819512,1.27649328296034,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,GM05,Kanifing,0.1270382151657997,26.897210559131203,47.23099999032136,31.024885594461022,10.51938218056994,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -GMB,GM05,Kanifing,0.0754727560468192,17.69823181065776,42.64423522883792,24.69063082035402,3.7037008006388104,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,GM05,Kanifing,0.0637966074964683,15.23720492433564,41.86896994118488,27.22431424503972,2.43856968792014,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GNB,,,0.3630347681599769,66.04798700207859,54.9653039612777,20.30136772726473,38.91559876041153,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,,,0.340688723442969,64.39631048074123,52.905006653270526,19.95652545565549,35.881701712323036,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,,SAB,0.1514313408486161,34.63849172449075,43.71764857808411,28.3288425710094,10.08166829749781,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,,SAB,0.1095508215543179,25.83286618565016,42.40753649518459,25.83053965492915,5.99885865067867,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW01,Bafatá,0.5287861289840959,86.7619992040087,60.94674325573436,9.8368379169916,62.9611372168384,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW01,Bafatá,0.4247729721285553,78.57967184425429,54.0563433467194,14.040381361143059,49.10639498082975,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW02,Biombo,0.369294242613907,68.93334852165506,53.572653952519836,27.10335763811516,40.3550674336411,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW02,Biombo,0.2856944726853827,59.25926394087101,48.21093845688825,30.47292784571415,23.572321007670848,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW03,Bolama,0.2976829782681008,59.24648831959806,50.2448308264763,36.118448071868045,29.66030367082761,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW03,Bolama,0.3239679554023022,66.86048433270031,48.454323751264724,25.047524741934566,31.04705558991434,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW04,Cacheu,0.3176037620219588,65.70340231965558,48.33901302047882,30.11468559312678,25.285962465561617,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW04,Cacheu,0.2922301210738744,61.5248753868396,47.4978810174695,30.37660395149026,22.730123266841858,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW05,Gabú,0.5268106589441706,88.8333316411983,59.30326480064729,7.20476094633432,65.65757571916538,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW05,Gabú,0.4894546801762928,83.64881604143724,58.513043380534036,10.65154622106274,58.257485002073,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW06,Oio,0.5242464732275044,85.87983344802538,61.044188394331215,12.45761935438363,61.30311136558397,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW06,Oio,0.4762569429799486,83.39542050944621,57.10828485192454,11.77689679206559,58.54394645723021,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW07,Quinara,0.4076788833845988,76.84766157066257,53.05026529788833,20.45966168551309,44.49106153516255,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW07,Quinara,0.3348402193473945,67.89421525690125,49.31793056012367,26.232691222145448,30.401438864418928,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW09,Tombali,0.4391426944518522,81.72929401564707,53.731370096966515,15.19111835170981,49.1490232709542,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GNB,GW09,Tombali,0.3772459701426816,74.12821155876233,50.89101196561773,22.12698499235897,35.95025020121761,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GUY,,,0.0227249361888226,5.42559194414444,41.88471308342402,9.70917992952054,1.2123449572226699,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -GUY,,,0.0143266914660261,3.44329950862967,41.60745073183509,6.01335242300806,0.65314438413335,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GUY,,,0.0071647093309802,1.82361493488328,39.28849887072674,6.49898573037163,0.22317483037909,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,,Coastal,0.0086416565554979,2.24133629219899,38.55582308453828,8.12818224736796,0.255351189307,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -GUY,,Coastal,0.004374989508228,1.10593831688741,39.5590734259134,4.10909795023054,0.14038328671758,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GUY,,Coastal,0.0024131703356721,0.65940792764985,36.596016433600994,5.40042100815873,0.038617618998310003,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,,Interior,0.1316198093892873,30.046924793061457,43.80475216541342,21.93378574653882,8.61202157545998,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -GUY,,Interior,0.0772609896035145,18.22470943427918,42.39353712723286,18.05580699285337,3.895831907827,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -GUY,,Interior,0.0578638740189939,14.245763390141692,40.61830344524512,18.22072763902699,2.19240973793088,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -HND,,,0.1859443078882543,36.6567865421683,50.72575242632151,21.306293471095568,17.95116712716904,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,,,0.107662529207116,22.82655954128973,47.16546486664846,22.6297401614473,8.226638467004289,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,,,0.0486890271848002,10.84034352090392,44.91465338797705,18.69992511130232,2.88822858095007,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN01,Atlántida,0.0745765507559292,16.76754159619901,44.47673520179889,17.27517492025218,4.21344669010188,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN01,Atlántida,0.054734061002803,12.11339764002712,45.18473068360401,16.725943618336007,3.19562822832495,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN01,Atlántida,0.0212871123122327,5.52799822557355,38.50781321483518,13.455035944109861,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN02,Colón,0.1306272292578591,25.84922935505869,50.53428381310518,20.13755652003646,11.34028521340064,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN02,Colón,0.0586041280916875,13.145560797044,44.58092659300288,19.86086931987537,3.72984902866154,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN02,Colón,0.0342777859367752,7.3581436583319695,46.58482835947467,19.494456859338978,2.19169421244196,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN03,Comayauga,0.2047888853456985,40.39437862420001,50.69737233759818,25.072997112322582,18.54993013207787,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN03,Comayauga,0.1264642521093427,27.41120419804166,46.13597096853474,29.72010097551933,8.39286484007501,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN03,Comayauga,0.0663991133778257,14.056257981953099,47.23811519614664,22.00849330301496,5.044133276241021,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN04,Copán,0.3357029510167954,60.626188736773635,55.37259689444573,19.22063824548917,37.397597585612544,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN04,Copán,0.189684630728667,37.9353646077323,50.00205815604679,23.276899938183853,17.50376173639488,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN04,Copán,0.0991603693128142,20.89921607771048,47.44693243234664,23.44717755297313,7.7450939992533305,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN05,Cortés,0.0631888137411326,13.87266979953755,45.54913701127596,16.59074863969699,4.80294423152192,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN05,Cortés,0.0244163088175611,5.55624425061937,43.94390836011085,10.39094189309422,1.13538861378833,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN05,Cortés,0.0113622223266714,2.79482133043604,40.654557065723964,8.18705741367132,0.16902440515639,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN06,Choluteca,0.2574716040784286,50.998600699461875,50.486013448824984,26.310741710665692,25.780284766005863,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN06,Choluteca,0.1290130333940099,29.35542393909906,43.94861871579888,31.374537474319553,7.54040969456787,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN06,Choluteca,0.0528387347985075,11.84838101061366,44.59574244884186,26.58522217472662,2.79172840460049,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN07,El Paraíso,0.2646136001746167,51.629046169427674,51.25285470241916,27.630988393997868,27.26282097998635,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN07,El Paraíso,0.1861078304339259,38.608155321108676,48.20427935135587,30.34949524018608,16.538854439516072,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN07,El Paraíso,0.0493481551101612,11.3701668965465,43.401434261400176,25.689625978581237,2.04282813075621,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN08,Francisco Morazán,0.0991660848177687,20.809618575664448,47.65396562036839,20.619163748845,7.38611495423864,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN08,Francisco Morazán,0.0407170663326342,9.03673206355409,45.05729067352751,16.06668487188475,2.6535065496745203,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN08,Francisco Morazán,0.0212900817387359,4.9516860575297095,42.99562107004239,11.828205760428299,0.99001424076658,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN10,Intibucá,0.3680186109439137,68.94929690220117,53.375252174930445,17.23108541359916,40.84710735770262,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN10,Intibucá,0.2260842820913352,45.48383834955033,49.70650901400238,33.32720952976826,19.66824207798622,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN10,Intibucá,0.1006265455765604,22.30575731231901,45.1123645647245,32.36025804689694,7.22850935151399,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN12,La Paz,0.3254531872880853,62.18140777801145,52.33930831060592,20.83433465286103,36.44041964080918,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN12,La Paz,0.1514715527264661,33.32030690654107,45.459230958263156,27.72250816632342,10.51829864936993,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN12,La Paz,0.0714493145818824,15.68636959961214,45.54866193108764,28.88292906135667,4.20017470162815,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN13,Lempira,0.4283194298505487,77.27894875990981,55.425110812680856,15.27638154843755,50.98148373896508,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN13,Lempira,0.2869618013114078,55.62474790720032,51.58887223905282,30.365353257032464,28.54463931208082,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN13,Lempira,0.1002980878991331,22.356619376297328,44.86281499494951,29.387800746121467,5.93739354877457,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN14,Ocotepeque,0.2738043656567337,52.72018572130891,51.935394746924246,21.8732298402326,27.987331855639457,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN14,Ocotepeque,0.1312502026958561,27.81211493648253,47.19173748404464,30.439380027324148,11.33444714560226,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN14,Ocotepeque,0.0523515419536547,11.90883075034865,43.96027036669581,24.33389801050707,2.56489211556476,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN15,Olancho,0.3009562658714915,58.35668989924901,51.57185343978264,24.268142824386018,30.212995499276502,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN15,Olancho,0.1548751156834739,32.71331715585791,47.34314008744407,27.80007407983326,11.99384657427297,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN15,Olancho,0.0958643661515027,20.59548523242215,46.5463013226751,19.207979965793818,6.287942587709599,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN16,Santa Bárbara,0.2749803242066351,55.479497405818954,49.564314217776925,26.898895175835708,24.8891219748907,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN16,Santa Bárbara,0.1491307660399218,32.7966898052578,45.471285951551685,32.01150277719645,9.83213229077095,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN16,Santa Bárbara,0.045006796447032,10.268977660212899,43.82792322298122,24.40800461088094,2.65920593633951,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN17,Valle,0.2307293194560268,48.80158979363992,47.27905800439655,29.892362654892217,19.06065360370912,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN17,Valle,0.154447482024399,34.81476709952799,44.36263542503862,34.4378422739387,8.59543251715673,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN17,Valle,0.0440484210993965,10.57301894516165,41.661157828108905,27.19836453125112,1.7192067574627101,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN18,Yoro,0.1113500501789538,23.01913797620459,48.372814956867174,22.8784502225303,9.133501483566391,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -HND,HN18,Yoro,0.131163970434304,27.05283540004143,48.48437085973736,26.101994868895538,10.43779624241551,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -HND,HN18,Yoro,0.0652360623948074,14.2688462956099,45.71922707926185,17.35049148752783,4.57438003566913,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HTI,,,0.2369230010341045,48.418690507576315,48.93213726980739,20.14036453748714,23.47015993596984,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,,,0.1920249580170143,39.91047365603225,48.11392610169909,22.01162193946712,17.80403359224514,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,,Aire Métropolitaine,0.1510325861446425,32.04240077977034,47.13522784472363,19.71270015964623,12.64473819365824,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,,Aire Métropolitaine,0.1299457978162506,26.86023664034766,48.37850073928784,18.6037141226758,11.99015911062212,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,,Sud,0.2407012208407608,49.548434149752765,48.57897630291951,24.088301042938003,22.497989356890592,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,,Sud,0.2160608737326589,44.42605555881809,48.63381882881862,24.25621057126023,20.79955259166191,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT02,Sud-Est,0.2957219036624558,61.8820632206322,47.78798383113037,20.13169010053897,27.65184211877721,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT02,Sud-Est,0.2159229161536216,46.50983920691422,46.42521234980363,26.3474197361328,17.32413582097469,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT03,Nord,0.2387555086514781,49.16676606367691,48.560344266340586,18.38302665838589,22.737065867897897,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT03,Nord,0.1850265730884904,39.25641010215817,47.13283069108715,24.09876698900125,15.44365615886937,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT04,Nord-Est,0.3013240517532296,59.68306264693519,50.48736415149484,22.25917663737994,31.37150616697365,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT04,Nord-Est,0.1908201950357876,40.58437379882816,47.01814446655264,26.356779726045282,15.68833439705336,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT04,Nord-Ouest,0.2941344079524507,60.545796351859636,48.5804838114771,23.52806741674337,29.08302398843139,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT04,Nord-Ouest,0.2200603347871842,48.213845521079314,45.642560224940546,28.709503980914892,18.97637897910806,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT05,Artibonite,0.2973542557276202,59.13528974081237,50.28372348066815,20.63193805590939,32.89972466334505,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT05,Artibonite,0.2454566814813659,50.05265948148053,49.03968820521608,19.727385987703812,23.60258435201918,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT06,Centre,0.3688919584737133,72.48279331229877,50.89372823758437,16.97563951422942,41.328030854554335,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT06,Centre,0.282519858154702,56.070018619029206,50.38697419993713,22.204785394731942,30.030382327051893,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT08,Grande Anse,0.3738514216512383,72.70589055756545,51.41968811388652,16.05594267854911,45.26948237550827,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT08,Grande Anse,0.283577766422171,58.534230040068124,48.44648442937665,27.22935377939557,28.14389737389231,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT10,Nippes,0.2512689153554259,53.0738951191751,47.34322114312745,23.32526269975384,22.74146166287778,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -HTI,HT10,Nippes,0.1781811978829977,40.19523061633244,44.32894031228613,26.789970160729137,15.215590090906009,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -IDN,,,0.0276751752961537,6.8729391581185295,40.26687078040392,8.95309038074876,1.1252259340925699,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,,0.0139039084334274,3.5949275490940797,38.676463554686016,4.63165455802562,0.43356721294655,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Central Java,0.0196963232488461,5.28329957265611,37.28034531826483,9.17766337118861,0.15150866792198,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,Central Java,0.0099635778432018,2.75239378762021,36.199681484590904,4.18599081762535,0.11094752975911999,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Central Kalimantan,0.0424183672364971,10.203020317704379,41.57432399001724,13.00697451349279,1.88082609156422,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,Central Kalimantan,0.0171784778067183,4.6770050215552095,36.72965439965702,6.17444267278543,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Central Sulawesi,0.0702439615862713,15.386873239112319,45.65187513712416,15.20237290214326,6.14617085286916,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,Central Sulawesi,0.0249851553706921,6.6257449581989105,37.70920180043249,7.5908689591155,0.45118206285424,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,East Java,0.0207716071948868,5.3221583744335,39.028540177738954,8.95084953990825,0.37245585061791003,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,East Java,0.0106643549016602,2.89626236863842,36.82109403187014,4.57097619357555,0.10448951165025,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,East Kalimantan,0.0123537680970487,3.04934880218922,40.512807482632,5.30162428878002,0.49762286515492,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,East Kalimantan,0.0101286681112175,2.6822185413620097,37.76227758858996,2.01125491675402,0.25525993837208,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,East Nusa Tenggara,0.1148974772187685,26.873775592030718,42.75449753061148,27.940795643500437,8.1847199440703,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,East Nusa Tenggara,0.0655737193553364,16.115172135503737,40.690672618301946,21.9449732999298,3.1243318261274,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,North Maluku,0.0538840937685451,13.212143494987341,40.78376365575248,14.877265095180588,2.60792472863212,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,North Maluku,0.033434329452522,7.745006297336491,43.16888607827221,12.64116506783711,1.9922723558128501,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,North Sulawesi,0.023048792789794,5.776158387471,39.90332543475412,11.5875001989334,0.84107481453559,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,North Sulawesi,0.0078784063785019,2.06664616562633,38.12169934815243,3.06905536102289,0.19793507045027997,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,North Sumatera,0.0237402923716423,5.86006576118053,40.51198969285925,9.3336657322352,1.26138257435752,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,North Sumatera,0.0207035687024479,4.94549158293764,41.8635202491841,4.86280211477706,1.55918081609892,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Riau Islands,0.0127165497532944,3.04105871676165,41.816192772614066,4.68723348637412,0.7310236912815601,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,Riau Islands,0.0050828233334708,1.41169754446883,36.00504480145771,1.0785472186529799,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,South Kalimantan,0.04207465624281,10.23533912488273,41.10724200678804,11.054627794029109,1.90496443544679,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,South Kalimantan,0.0185368017195364,4.92361958188794,37.648728564907856,5.38323113332788,0.35813133127955,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,South Sulawesi,0.0279212626555558,7.06919335191115,39.49709855935301,8.30429165104334,0.952127898766,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,South Sulawesi,0.0109033519824092,2.88469344995335,37.797263978207155,4.92102264322186,0.10362837989405999,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,South Sumatera,0.0194380335238579,4.7146314271904295,41.22916886302926,8.217944579846689,0.9357041857116,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,South Sumatera,0.0150108980204921,3.70249666291306,40.54263754199252,4.66193073420679,0.6744148454922599,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Southeast Sulawesi,0.0581414845975402,13.51960298928365,43.00531949320271,15.20067308497311,3.2456001304740703,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,Southeast Sulawesi,0.0207514400323813,5.17503410226724,40.09913678305977,5.22587100672673,0.92837680609054,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Java,0.0189713250193968,5.13363555843615,36.95495093768597,6.24198786009371,0.10861246206692,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,West Java,0.0087911557401584,2.38010260184153,36.93603684713656,3.01862827291223,0.12838171360073,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Kalimantan,0.0499621168032338,12.06716811097405,41.40334860985124,13.03273175965429,2.4682418271159303,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,West Kalimantan,0.0206860589406826,5.242817312195,39.455998004290535,7.68542613736005,0.5866690702405599,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Nusa Tenggara,0.0402565760250413,9.963502497822759,40.404040681314804,13.75662256416524,1.9983063974007402,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,West Nusa Tenggara,0.0167478145047187,4.53038642692603,36.967739451935685,4.32784545915283,0.37742969295781004,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Papua,0.0663185119227436,14.07152884390197,47.12957110661313,13.959503558056069,4.81988757428046,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,West Papua,0.0413247600127626,9.578636750732281,43.14263197171904,3.71988773463739,2.86173745652756,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Sulawesi,0.0994006518401388,22.05482999455109,45.069788279799425,21.87357738095768,6.896892885142609,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,West Sulawesi,0.027974509381614,7.108670983389211,39.35265740527573,10.66326038677248,0.72714675124192,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Sumatera,0.0263641698493551,7.000169963641301,37.6621853273419,7.70186305165194,0.70276127681922,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,,West Sumatera,0.0119681161395485,3.3189767623393,36.05965632345388,4.87412913129986,0.32006029368225003,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID11,Aceh,0.0265166942589384,6.66976377805453,39.75657180871387,8.11962395550577,0.89487031561373,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID11,Aceh,0.0116720418731846,3.01320713010343,38.73627457128688,4.89167481828125,0.41208545325021,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID14,Riau,0.0155669579586438,3.89871229447999,39.928460432138976,6.12242725282135,0.6965593993964501,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID14,Riau,0.0088977854636385,2.30960169238316,38.52519459516538,2.73033176618046,0.32654279412913,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID15,Jambi,0.0237440851718205,6.11386250871591,38.83647225951023,9.22606030131054,0.78306346168565,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID15,Jambi,0.0066647763154949,1.81334697068204,36.75400473957913,3.41403260251272,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID17,Bengkulu,0.0284657182533676,6.79974298197273,41.86293265618285,10.90891614191253,1.23063350226678,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID17,Bengkulu,0.0078389003004732,2.16429494307343,36.2191868791297,3.91791590831422,0.23304758585775998,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID18,Lampung,0.0255874537370705,6.58954413796459,38.83038523052379,11.91083380228785,0.7815564675562201,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID18,Lampung,0.0126632871974014,3.3894943736710195,37.36040188108155,5.3525969099583595,0.20170382364109998,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID19,Bangka Belitung,0.0179503259222985,4.79356461730507,37.44671732909724,7.09743864772889,0.26683615290616,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID19,Bangka Belitung,0.0131725711973571,3.5262963855014697,37.35525820097461,3.77453141476546,0.30534793840651,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID31,Jakarta,0.0064814975146161,1.7539038052847102,36.95469212785022,1.23395755152008,0.1783771459813,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID31,Jakarta,0.0052229906061746,1.4949431321595401,34.9377209996585,0.52498749525129,0.12494819823217002,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID34,Yogyakarta,0.0097975458847538,2.69948034673839,36.29419231220384,7.38469364946819,0.1228144660887,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID34,Yogyakarta,0.0081146814773727,2.29255873172079,35.39574085974174,1.36426928514527,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID36,Banten,0.0239401735633411,5.95723611097232,40.18671262541862,6.48815240065197,0.8198037540026799,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID36,Banten,0.0151966668580295,3.91330753529905,38.83330589520921,4.02545720925219,0.6070991331091,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID51,Bali,0.0224047862585948,5.95245728491782,37.6395582297809,5.331534490580061,0.36519854891265,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID51,Bali,0.007880048223558,2.1906911043452397,35.97060401591041,3.9237069760225,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID75,Gorontalo,0.0658931382390217,15.258050442743071,43.185817536971996,17.89582459074304,4.5598850686304395,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID75,Gorontalo,0.035167129833455,8.876151479874279,39.619794584615455,7.68786446473577,1.36826762978738,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID81,Maluku,0.0481570001971175,11.546375602953091,41.70746029152294,19.16980463181997,2.52715019565461,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID81,Maluku,0.0210297033842058,5.36075003366197,39.22903185590286,10.055080903295401,0.5645316835595,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID94,Papua,0.2014925832061324,42.17598358887595,47.77424639819821,13.441793289028132,21.36114226196372,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -IDN,ID94,Papua,0.0831369043871795,17.93301853721358,46.35968240073949,16.31540898119264,5.84160150763268,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IND,,,0.2826800876010325,55.07424298112422,51.32709453635458,17.02049653470964,27.777070862171634,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,,0.1216789273466916,27.67806303253501,43.96222640423227,18.919648602548232,8.71514240056885,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,,0.0688105643495505,16.39280600909704,41.976074328802945,18.6868992539409,4.24535051896597,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Andhra Pradesh,0.2355736469399612,49.88357579428542,47.22469133156008,18.61325778216051,21.54912974430969,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Andhra Pradesh,0.0631355911092093,15.413480237345938,40.96128203170852,19.20367523790022,3.19223919129899,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Andhra Pradesh,0.027816926629752,7.113785295385899,39.10284816691679,16.07714825281504,0.9091020268212201,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Arunachal Pradesh,0.312848692553646,59.941888606504655,52.19199792108265,15.64307150469951,32.00360943813311,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Arunachal Pradesh,0.1076043688246221,24.34529008553267,44.19925515225867,20.335566436477272,7.5592310543441705,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Arunachal Pradesh,0.0540713218765504,13.20612997099045,40.94410852787879,18.46087231688771,2.74482116242507,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Assam,0.3170869601253338,61.68161808185697,51.407043133098654,17.467623114259982,32.49137118886918,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Assam,0.161543154362812,36.184035512534365,44.64486950518619,20.3578008535862,12.18182328825813,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Assam,0.0899183800385575,21.410457179559238,41.99741242536539,21.69236765249547,5.4333123436283,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Bihar,0.4484477087657998,77.37472494146338,57.957906681421576,11.41094361345006,50.75057870616546,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Bihar,0.2474987130084653,52.412502662398595,47.221311793230605,19.21037844537809,22.36671428899833,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Bihar,0.1543994649348826,34.66086476628934,44.54576248341308,19.97873919728777,13.191225220941142,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Chhattisgarh,0.3552483843356502,69.94473182828112,50.78987009454955,13.28689387284686,34.95628144797648,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Chhattisgarh,0.1524103222019756,36.76318160375922,41.45732647535352,19.84364295040658,9.021964352664389,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Chhattisgarh,0.0731745889051574,17.884792773788067,40.9144180928962,24.00071254895192,3.7307688922686504,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Delhi,0.0570877341311211,12.631735185440679,45.19389719072032,14.446519904208529,4.1882131684692,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Delhi,0.0167462487221513,3.9816739638033902,42.05831234397421,11.873117326440159,0.90006077923836,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Delhi,0.0133876584906626,3.3542813179193995,39.91215173021552,7.189266238922009,0.48898501952992995,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Goa,0.0875322318634107,20.598517526739542,42.49443279099212,17.84052831843294,4.99805785407201,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Goa,0.0203016364283427,5.45940724151515,37.186521411999166,9.33271029267989,0.42445929199793003,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Goa,0.0053279983793787,1.39379981332695,38.22642483113119,6.38905024918818,0.13608122368145,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Gujarat,0.1850663265380315,38.29978482885416,48.32046116316741,18.44344121946346,16.47610352160843,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Gujarat,0.0907495238339615,21.4871081714403,42.23440544436861,18.25910719442828,5.44126067473931,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Gujarat,0.059024964110866,14.40217301124437,40.98337387336115,17.73877369333265,3.01645380758199,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Haryana,0.186263852901908,39.04327181756069,47.70702972134911,20.954437712758182,16.60988198290659,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Haryana,0.0452334170616842,10.70343380341615,42.260659422443794,19.06497814004106,2.59230652822176,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Haryana,0.0298069948508933,7.1746013463368605,41.54515827713813,17.90884955079188,1.59325362100292,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Himachal Pradesh,0.1286632195784883,30.93222765229431,41.59520000459618,27.46737345450367,6.23539431118387,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Himachal Pradesh,0.0303682985506789,8.12212925114442,37.389578042481816,21.14574339942281,0.56141731562901,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Himachal Pradesh,0.0203555177507209,5.3102640058972,38.33240254743557,17.419379906215678,0.63453005715839,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Jammu & Kashmir,0.1932512419525937,41.70691713008438,46.335537424125775,20.58596255823787,15.4783030876845,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Jammu & Kashmir,0.0635354913864002,15.22733125314649,41.724639945211415,17.41287134391328,3.33591815930787,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Jammu & Kashmir,0.0248830892570017,6.25946440495785,39.75274503884526,11.19506121571915,1.00506552999073,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Jharkhand,0.4290860433431811,74.8586600646154,57.319492891378076,10.8042345713907,50.12248687863314,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Jharkhand,0.2079895573441221,46.500244043572906,44.7287023158904,20.429424389615868,15.42957984559585,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Jharkhand,0.1318070300041965,30.60304491506368,43.069907053372184,22.542714223877862,9.147283195448159,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Karnataka,0.227845436458212,48.695238776795854,46.79008506408318,19.93237309571932,18.905000898002218,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Karnataka,0.066894341403725,16.82357743490074,39.762257262210994,18.25734654038353,3.15922708595905,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Karnataka,0.0333339461828886,8.49785820514311,39.226291352701246,17.97224791055984,1.28185843503298,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Kerala,0.052848219354959,13.301358850589631,39.731443943876684,24.15083692088387,2.02312416145678,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Kerala,0.0040044821540585,1.07441867709367,37.27115173472872,10.0219265717955,0.06969174426263999,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Kerala,0.0030631847872796,0.8574502855095,35.7243427292054,8.64066698795345,0.03031827133185,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Madhya Pradesh,0.3655389664170295,68.65304293018526,53.244393957709015,14.457673095658349,38.82363121519211,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Madhya Pradesh,0.1813434024312253,40.97599066662019,44.256014188072115,20.413180659050038,13.034387064182509,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Madhya Pradesh,0.0994171726564807,23.96245761357691,41.4887213405656,22.19369820141333,5.46653528567605,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Maharashtra,0.1861476133000944,40.12747640700915,46.38906554003471,21.04933526501377,13.783716644582741,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Maharashtra,0.0706708781639538,17.11298661809808,41.296636140188795,20.35639686484749,3.45936764909743,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Maharashtra,0.0356919448067677,8.98805613712266,39.71041598121777,16.931766712826978,1.3984931955370898,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Manipur,0.2022722704443461,43.88214551130903,46.09443501166502,25.02524923731398,15.68333483949545,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Manipur,0.077895292146782,19.20890287312145,40.5516612069391,22.23050210491829,3.3373278984228603,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Manipur,0.038346425252955,9.67144307071405,39.649124719630805,17.40117184356679,1.37756484196178,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Meghalaya,0.3399613308537299,61.401316748532885,55.36710755667188,13.43711478942398,39.96706956839958,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Meghalaya,0.1451305351224978,32.608029543244335,44.50760660960134,23.448991883401828,11.199476038167349,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Meghalaya,0.1230173828140467,27.01906224555718,45.52984914725335,20.01991195992019,10.30658680208547,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Mizoram,0.1380045759322559,30.55441892106976,45.16681409938072,19.622748844969582,11.35107911818538,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Mizoram,0.0440168279875612,9.73234926995649,45.22734107317747,12.36704798723175,3.40147098437125,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Mizoram,0.0245889652902473,5.75036037533488,42.76073791082227,9.1094969678308,1.7597163194645702,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Nagaland,0.2943728087797194,57.00303688352645,51.64160102227666,18.167881993133058,30.40966736295823,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Nagaland,0.0980011988080973,23.481786891104868,41.7349834842514,17.5261656167356,6.24571007035922,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Nagaland,0.0660178088487265,17.05622656493351,38.70598728118141,15.482927813555488,2.89292422417788,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Odisha,0.3358968573024856,64.1870916968468,52.330904613798936,15.74173703019612,34.16461086649539,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Odisha,0.1553809501432756,35.838043920987126,43.35642606104549,19.05672293049129,10.622225222754821,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Odisha,0.0863464205278085,20.79997193960536,41.51275817992596,19.43073099409477,5.167932896431441,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Punjab,0.1082710710454378,24.04556484146388,45.027460057306065,19.40804763760288,8.93223291597637,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Punjab,0.0249400741193982,6.03895715936678,41.29864389038543,13.009555912641598,1.41717160972202,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Punjab,0.0188288031597818,4.7077404377339604,39.99541480423022,12.20227589390916,0.72727771505835,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Rajasthan,0.3312240611208352,62.02897735719637,53.3982785518885,16.110941890017543,35.21032161699992,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Rajasthan,0.1405213301564133,31.051393238041193,45.25443643677156,22.201582344577158,10.935516701691519,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Rajasthan,0.0679440978626226,16.56909374649526,41.00652630865482,22.77259294770505,3.6460763598189496,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Sikkim,0.1771236335169585,37.48241373740072,47.25513003454762,15.87820537804899,15.715197311242399,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Sikkim,0.0184205579408898,4.8313257329792,38.12733597146815,12.20083245823314,0.50613017737854,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Sikkim,0.0140003058651559,3.6746111323491397,38.100101918010644,9.6617170566378,0.48106332152354,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Tamil Nadu,0.156227894935803,37.288431410021,41.897148533262765,21.86907043028834,8.50191661041733,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Tamil Nadu,0.0267556312271141,7.13610352735132,37.4933338965233,16.46200062252263,0.55301449758722,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Tamil Nadu,0.0141683236723599,3.8375615777637297,36.920120720554564,12.65565005944837,0.22072806433689002,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Tripura,0.2654864624539941,54.57263558360604,48.64827575484513,19.03088492017434,23.70586313351779,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Tripura,0.0864989474871809,20.26433140744508,42.685320205235726,20.469476312929,5.28683260930354,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Tripura,0.0634734071443708,15.699963832755682,40.42901488215078,20.6965746007467,2.82844003699397,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Uttar Pradesh,0.3610577521457572,68.78760662453801,52.48877957282502,14.50432753007626,36.47871833824402,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Uttar Pradesh,0.1820781038420439,40.689671987577555,44.747990079062475,19.47647514326528,14.03443859581266,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Uttar Pradesh,0.0982533917430151,22.93870373869955,42.83301831796756,21.47809924138931,6.585065545579639,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Uttarakhand,0.1818496856962307,39.294221773832646,46.27898899306629,21.05652435079173,15.00768099163133,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,Uttarakhand,0.0718583926192365,17.212521790506592,41.74774242486032,19.427605732340762,3.91459094723891,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,Uttarakhand,0.0391229274878325,9.810993024561181,39.876623487439886,16.1711449930035,1.5088707839822901,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,West Bengal,0.3018819730615346,57.96445272837345,52.08053537159751,16.35379340095015,31.07855178921773,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -IND,,West Bengal,0.1096640865982869,26.16384382823167,41.91436369909672,19.82939045318947,7.078361404270541,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -IND,,West Bengal,0.0606670185661897,15.27069763484711,39.72773216840467,20.21336698545865,2.82583443997695,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IRQ,,,0.0524350835947156,13.26700337548505,39.52292926344308,7.9118761368635395,2.53373633707278,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,,,0.0326943223812881,8.63541898801165,37.86072502871815,5.24373156675884,1.3125265638064199,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG01,Al-Anbar,0.0707839267388453,18.9303109974524,37.39184567457512,4.42701413416369,2.74814587296617,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG01,Al-Anbar,0.0359987578486952,9.79813553774345,36.74041628636817,4.65290205043105,1.30667798059494,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG02,Basra,0.049404467689005,13.088625084809141,37.7461095943107,6.3087574460248,1.9481181054348502,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG02,Basra,0.0536091049804967,13.824068408980661,38.779542602429565,8.79170423568938,2.2509956259663,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG03,Al-Muthanna,0.0979893803464763,24.62375333991772,39.794656400990306,10.96954735635596,5.44222397665716,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG03,Al-Muthanna,0.0510629405229066,13.789784725323639,37.02954146132127,3.2528646697810295,1.7179374860106198,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG04,Al-Najaf,0.0537731572589522,13.45783106452862,39.95677832565782,7.5823693473570195,3.21838526869599,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG04,Al-Najaf,0.0485918859802776,10.70331350176984,45.398918729459545,9.78307064417017,4.39146125932105,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG05,Al-Qadissiyah,0.0952230279322294,21.20967157918679,44.89604074099502,12.852604827158581,7.63134505634997,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG05,Al-Qadissiyah,0.0301029717454744,7.7342013859159,38.92188765641973,9.22784786851653,1.16260701507978,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG06,Suleimaniya,0.0137471545282176,3.81121616228182,36.07025669199258,3.5762559593460197,0.20895034662602002,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG06,Suleimaniya,0.0082902047888055,2.2659025479898403,36.58676669991823,2.69159721466915,0.27808980776091996,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG07,Babil,0.0483593137849733,11.552513395744219,41.860426496270605,9.24424516310573,3.18947680581018,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG07,Babil,0.0354816702009306,8.80728797803242,40.28671514935216,8.0297147608067,1.67752029564003,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG08,Baghdad,0.0349125430745664,9.66839143880281,36.10998095758675,3.7740087704547705,0.95149006311232,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG08,Baghdad,0.0268550955674435,7.23494585441184,37.11858541562871,3.99798027101513,1.13554981236031,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG09,Dohuk,0.0367207744951623,9.58582365052168,38.30737538465346,10.27842563876548,1.23265340419099,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG09,Dohuk,0.0197426534979803,5.14762476393969,38.352938303277625,2.94638005391839,0.97920477711928,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG10,Diyala,0.0500741245177955,12.58401942221285,39.791836644344706,12.899622437673381,2.31487505135544,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG10,Diyala,0.0139402725196041,3.9625960596305703,35.17964564095317,3.64258101364147,0.20517811659896001,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG11,Erbil,0.0280850633140333,7.422254407661,37.83899307607249,8.91176456911011,0.65647892997882,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG11,Erbil,0.0122976412015198,3.45774872620586,35.56545653048024,5.31766558991831,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG12,Karbala,0.0661184287945093,15.1792508869949,43.55842675421976,7.12546142051487,5.4189628292084,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG12,Karbala,0.038046814983031,9.97689664518009,38.13491944051728,4.697251847131819,1.716987528023,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG13,Kirkuk,0.0236856205555709,6.46939594253971,36.611796164500234,7.20760977718047,0.64672998510212,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG13,Kirkuk,0.0216954460366346,5.9712813689105,36.33298231363204,1.9017269262688,0.44212530462243005,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG14,Missan,0.1075687276433561,24.980473943881833,43.06112361399038,8.48037621036626,7.758815133488051,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG14,Missan,0.0659855739437143,16.98038615236496,38.85987830407738,10.57298093005129,3.0439680207879802,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG15,Ninewa,0.0629704325055139,16.03980016892065,39.258863478566205,7.611456465928749,2.88938422702642,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG15,Ninewa,0.0421866337114942,11.60848604892481,36.34120206002365,3.01002934237092,1.5371953168204,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG16,Salahaddin,0.0714539270653204,17.73790763740951,40.28317686953281,14.99926136225927,2.85131231367594,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG16,Salahaddin,0.0188958074573244,5.2033490551833,36.31470281337633,2.58125636182145,0.26939937744326004,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG17,Thi-Qar,0.0709863072961767,17.69014925015843,40.12759095039342,10.74216363608959,3.65525085664902,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG17,Thi-Qar,0.0424490772049862,11.66345552536493,36.39494068689217,3.48024311434868,1.24710881032451,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG18,Wasit,0.0855594305739264,20.64623622810979,41.440691479368766,16.83888207353754,4.23349690574047,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -IRQ,IQG18,Wasit,0.0339315322887517,8.770545075562609,38.688054159022826,11.767544807448301,1.49474006118277,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,,,0.021445508221974,5.3086563380269,40.39724340103873,7.38274031791561,1.24470349572889,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -JAM,,,0.0181528659685422,4.686904216207441,38.73103680200899,6.412926688189261,0.81172115291274,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -JAM,,Kingston Metropolitan Area,0.0210239184470504,4.91785267377894,42.750199816163644,2.9878624889032297,1.83179111214621,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -JAM,,Kingston Metropolitan Area,0.011268234462353,2.91329326744665,38.67868226060537,3.47037357508736,0.53028403397742,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -JAM,,Other Towns,0.0069587928890027,1.9103283577787697,36.42720823709098,6.291368679219129,0,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -JAM,,Other Towns,0.0182449784479049,4.53806643642136,40.20430001084906,3.4783380300262103,1.15716391811418,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -JAM,,Rural Areas,0.029145292040628,7.33691470842802,39.72417998419465,11.28141383225076,1.43217914270109,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -JAM,,Rural Areas,0.0227086747951885,5.94128946476535,38.221794998984,9.7512652617759,0.8381299417948299,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -JOR,,,0.0017664279477005,0.52264726810922,33.79770746895631,0.8908187304495401,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,,0.0015241478335214,0.43120323950129,35.34639107266695,0.66151874808809,0.0014041432383,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Aljoun,0.0005674689417012,0.17024068251031,33.333333333341606,0.63352656464142,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Aljoun,0.001603713055471,0.45080244350262,35.57463094056317,0.21699197512319,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Amman,0.0025649121555056,0.7694736466515301,33.333333333339986,0.3167452598146,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Amman,0.0010703844824839,0.30239083378815,35.39738520096071,0.17603136456171,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Aqaba,0.0009143025805873,0.27429077417613,33.33333333334,0.28194044187572,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Aqaba,0.0002357477386603,0.060620847084039996,38.88888888891,0.12710403251893998,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Balqa,0,0,,1.9215510997080898,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Balqa,0.0021214705591426,0.5421571983439001,39.1301741565537,1.5964561780538,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Irbid,0.0005717257599664,0.1715177279899,33.33333333334,1.2838970746177398,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Irbid,0.001771520763279,0.49797078050314997,35.57479339428374,0.7148649317154799,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Jerash,0.0005695076361126,0.17085229083376002,33.333333333339986,2.3730973280352,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Jerash,0.0020431012913619,0.59427962927339,34.379460286396416,1.05110040517048,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Karak,0.0001925137567234,0.057754127016999994,33.33333333334,0.73878873938663,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Karak,0.0004106779709873,0.12320339129617,33.33333333334,0.87979418370334,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Ma'an,0.0054306327319722,1.59564550919555,34.03408025577104,2.3306433244024998,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Ma'an,0.0061267527037649,1.8218099171817301,33.63003267235907,2.10324886621484,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Madaba,0.0021555379255281,0.64666137765831,33.33333333334,0.21993341813417003,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Madaba,0.0024343797250998,0.68416562943147,35.58173080285765,0.51402002909225,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Mafraq,0.0033413951008298,0.92302797840823,36.20036639184036,2.08451005224724,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Mafraq,0.0031236270843461,0.8988575887520399,34.751078740770595,2.24392616410114,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Tafilah,0.0006040121940006,0.18120365820012999,33.33333333334143,0.044541607481160005,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Tafilah,0.0005446440681306,0.16339322043916,33.33333333334,0.31121835404581,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Zarqa,0.0022561159939833,0.66076960564071,34.14376167916565,0.75285506962583,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -JOR,,Zarqa,0.0014073117756656,0.40635243561162,34.632788002054774,0.8572375734969501,0.01000079437456,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -KAZ,,,0.0032208383209367,0.88962741005707,36.204351220811034,5.4154479021906,0.0288414266455,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,,0.0016413949363369,0.4622065792076,35.5121499817427,1.79770423028179,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Almaty City,0,0,,0.81721977897823,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,Almaty City,0.0005722090479411,0.1716627143823,33.333333333339986,0.23299537381484,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Almaty Oblast,0.001432416919221,0.36833577922816,38.8888888889,5.15296083130004,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,Almaty Oblast,0.0019111729283641,0.5733518785091201,33.33333333334,1.5085380855966999,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Astana City,0,0,,3.0361459652353697,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,Astana City,0,0,,1.43661040314895,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Mangistau,0.0013821636965852,0.41464910897549,33.33333333334001,3.33967419502169,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,Mangistau,0.0009325648971113,0.23980240211428,38.8888888889,0.83245906724413,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,South Kazkahstan,0.0039366497757942,1.11781572175993,35.21734127693391,8.112886982447021,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,South Kazkahstan,0.0043551177176231,1.17836177194128,36.9590886375097,1.88958335414533,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Western Kazkahstan,0.0051856734726687,1.4276081477609601,36.32420759717438,8.16348732511898,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,Western Kazkahstan,0.0006676435240942,0.20029305722816998,33.33333333335,3.2589622302235095,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Zhambyl,0.0054532581195554,1.46505706252739,37.22215508894874,8.029528467916,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,,Zhambyl,0.0017714372549864,0.53143117649581,33.33333333334053,1.82161843653597,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ002,Akmola,0.0005565594202492,0.15363846180824,36.225266362261635,3.5892885977560898,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ002,Akmola,0.0002944604150443,0.08833812451326001,33.33333333334,0.76652725209174,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ003,Aktobe,0.0016065386396912,0.46158563946654996,34.80477948897845,7.13853324612943,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ003,Aktobe,0.0026181421822007,0.78544265466005,33.333333333339986,0.78966573162472,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ006,Kostanai,0.0016662548476995,0.40721880574028,40.917924816128945,3.4474975900738802,0.18531529713876999,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ006,Kostanai,0.0001648870722846,0.04946612168536001,33.333333333339986,3.2176895342847995,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ007,Atyrau,0.0062511291817726,1.8030464790878502,34.66981719148486,4.48316928969207,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ007,Atyrau,0.0039301680045255,1.1790504013574,33.333333333339986,0.11830078301445,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ008,East Kazakhstan,0.0053457014959052,1.5392339778567699,34.72962247980335,5.99322304663747,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ008,East Kazakhstan,0,0,,1.0538152972011101,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ011,Karaganda,0.0053636028497403,1.47186262871261,36.44092013146371,4.4109734982320905,0.20819317079947003,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ011,Karaganda,0,0,,1.67334693857941,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ013,Kyzylorda,0.0110749540887357,2.96383492113925,37.366973476642414,9.89681577124366,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ013,Kyzylorda,0.0037130886052321,0.9547942127737,38.88888888890003,11.0525732851512,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ015,North Kazakhstan,0.0010737429765619,0.28376291198193,37.83944029409493,5.12648553208862,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ015,North Kazakhstan,0.0001989275919157,0.059678277574710004,33.33333333334,1.7775518881558399,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ016,Pavlodar,0,0,,1.16489620327485,0,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -KAZ,KAZ016,Pavlodar,0.0013241305197881,0.37412205757334,35.39300859128148,0.7669144803114201,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KEN,,,0.2367452384136922,50.104159753626575,47.25061543349331,26.96562548094169,19.62167362608706,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,,,0.1619068726466124,35.38774896855933,45.75223837788058,32.061693063079325,11.95381455840953,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,,,0.1029967592600175,23.02673303958134,44.72921064528488,26.86419181652348,6.83711397243179,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,,Central,0.1354896428295904,32.16868386058329,42.11849120616578,34.81820712471786,6.901208254944679,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,,Central,0.0657146648345403,16.247831983864387,40.4451897950453,31.86996070317467,2.04445532782097,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,,Central,0.0267230715076177,6.88041576042679,38.83932663098267,18.684353157444487,0.65507653790609,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,,Eastern,0.2711625067515471,58.25379894324341,46.548467511233085,25.37452438447901,23.529376839352288,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,,Eastern,0.1646066179651603,37.146731105871226,44.31254462095683,34.32083767128509,11.651878620636499,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,,Eastern,0.1019697294695278,24.13171981566764,42.25547546898144,29.34982371772331,5.74941602049201,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,,North Eastern,0.5195177747011746,85.43067457212271,60.81162033463573,9.99982110584889,68.68370524791926,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,,North Eastern,0.4637041318400402,80.74960058086735,57.42494433463605,11.397266316198,58.27144948711817,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,,North Eastern,0.3598000570879006,66.32501276856156,54.24801927191607,19.18772597963479,39.46496105629966,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,,Rift Valley,0.2709990016610404,55.88046567096202,48.4961960153928,25.726010378210162,23.00117475700639,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,,Rift Valley,0.197206601198386,42.086154564281145,46.85783323282209,31.798790411076638,15.42295222961117,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,,Rift Valley,0.1370754118444244,29.019297460599354,47.23595119094014,26.15365365335383,10.92568165953274,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,,Western,0.2474742029653064,54.670574413808836,45.266435485411485,31.69404319598416,17.709970052889652,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,,Western,0.1736755733269288,39.91173903481809,43.514910030710055,45.4540282502508,9.07203842193119,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,,Western,0.0946084436171926,23.46421908701587,40.32030355084136,40.607591017460784,3.01721265628959,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE029,Nyanza,0.2243419128759834,50.294727728262444,44.60545329683087,33.075408326086645,15.610956132988399,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,KE029,Nyanza,0.1548246743802067,36.47654289216257,42.444996730617454,39.9789710094672,8.776215480109819,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,KE029,Nyanza,0.0946912664897008,23.49520500967986,40.30237933684284,40.26575348253571,3.6401489468463097,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE045,Coast,0.2553010753011377,50.613540663354605,50.4412597805041,20.52103229785506,25.304036622541844,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,KE045,Coast,0.1997577108103248,41.46165305973324,48.1789065483078,25.93430135514858,18.50357671669208,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,KE045,Coast,0.1501617932466553,32.85642831499178,45.702409223262805,22.65029565822878,11.156995406690989,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE047,Nairobi,0.0240496682184228,6.19996368364629,38.7900146606646,13.87862902395652,0.9511926311977,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -KEN,KE047,Nairobi,0.0264928080355753,6.7910844303371505,39.0111598631089,11.898763130862019,1.05459108997427,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KEN,KE047,Nairobi,0.0088753519364488,2.30040057506403,38.58176716114665,7.4588826883011,0.22271500699339,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KGZ,,,0.035682204426793,9.39436234997818,37.98257199103654,15.041518187143609,0.70947012734382,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,,,0.0124309551546401,3.34861323243891,37.12269614841791,10.55556967645032,0.13271879532278,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,,,0.0040273226550088,1.0920519271290599,36.87849043585677,7.26377247939636,0.04394709473252,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG02000000000,Issyk-Kul,0.011426379289054,3.14750264524441,36.30300138529906,18.11673587109754,0.10032286649562999,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG02000000000,Issyk-Kul,0.0082250661349529,2.12679607253764,38.67350631853948,9.179798446761831,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG02000000000,Issyk-Kul,0.0026894014333585,0.77367299057768,34.76147501737715,1.52483935909153,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG03000000000,Jalal-Abad,0.0249154238345807,6.91802058336399,36.01524964307813,15.43755709613704,0.22470612021907999,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG03000000000,Jalal-Abad,0.0216814788205947,5.97955286562958,36.25936471808724,15.346296157461689,0.1010413298425,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG03000000000,Jalal-Abad,0.0048328823507382,1.26743829821237,38.1311055343255,13.94774362549879,0.26428476870021,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG04000000000,Naryn,0.0460281833375608,11.35376311818696,40.54002435882327,13.68557633990665,2.1372148128410697,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG04000000000,Naryn,0.0126214239265731,3.01640371716719,41.84262157860708,17.215021969687218,0.23162457073072,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG04000000000,Naryn,0.0014422308626105,0.43266925878302004,33.33333333334377,4.7726447955222895,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG05000000000,Batken,0.0976536227556099,25.53585605586268,38.24176582996911,21.2526964442503,2.1398472089873,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG05000000000,Batken,0.0330109136689238,9.33938147030176,35.345931391597006,14.08768148270218,0.7392352962263,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG05000000000,Batken,0.0040524112307424,1.10412372408242,36.70251025635911,16.39932883820416,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG06000000000,Osh,0.0676431058093448,17.58923488887202,38.45710529008845,19.662272215095488,1.41862416794708,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG06000000000,Osh,0.0145023538762392,3.75013594327606,38.67154176701701,12.643208025498732,0.14371923812549,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG06000000000,Osh,0.0091531737795286,2.44997576478309,37.36026254259267,10.15652686747104,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG07000000000,Talas,0.0188143677594517,5.08111478653646,37.02803134718485,25.00292948107976,0.31007407847103996,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG07000000000,Talas,0.0056996631522222,1.36275574185814,41.82453962329705,13.142426205362328,0.14760315868338,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG07000000000,Talas,0.0047748684125544,1.4324605237660402,33.33333333334001,3.9922014002173696,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG08000000000,Chui,0.014672896859667,4.03779705263583,36.338866635431025,12.15455618915921,0.19593847353658,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG08000000000,Chui,0.0025004305911474,0.7189856681471399,34.77719656903807,3.3049570284444503,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG08000000000,Chui,0.0007597181359475,0.2279154407842,33.333333333339986,3.4473042288549998,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG11000000000,Bishkek,0.0041771094402686,1.06846062524736,39.09465020577259,4.51127819548884,0,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -KGZ,KG11000000000,Bishkek,0,0,,4.137744662343589,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KGZ,KG11000000000,Bishkek,0,0,,0.7167203183672,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KHM,,,0.2254138774120737,47.11806465942812,47.84022413513312,21.80841020393844,19.49410260304574,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,,,0.1683373103481145,36.721128462160166,45.84208530562458,21.27984320150572,13.11637353076025,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,,,0.0703679147927832,16.64469696411416,42.27647697311396,20.52114971288751,4.09292314430388,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,,Battambang & Pailin,0.1812379398623444,38.93402539567402,46.55001326487085,27.59452609611331,14.69492599166185,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,,Battambang & Pailin,0.1120322999878921,24.07984796164234,46.5253352788408,24.59167711669998,9.155658215929211,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,,Battambang & Pailin,0.0472687804973328,10.92129912329861,43.28127996832672,22.706238152552167,2.49450779842704,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,,Kampot & Kep,0.2366139448311771,50.166379174343675,47.165840693598895,23.83198741066523,17.67249921062783,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,,Kampot & Kep,0.1688137307743129,37.44853170398643,45.07886506971981,25.55034673736283,11.010682110323259,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,,Kampot & Kep,0.0783453190834338,19.345160963525938,40.498664876011546,16.72867324455417,4.84504427012031,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,,Mondul Kiri and Ratanak Kiri,0.4078101403677548,70.90205283417369,57.517395345596626,12.663972860884371,46.87487823547549,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,,Mondul Kiri and Ratanak Kiri,0.2899279687584388,55.878208045915386,51.885695496928506,16.22448216445881,30.46345246107352,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,,Mondul Kiri and Ratanak Kiri,0.2107284598620618,45.136462053668154,46.686968865991616,18.69169749681312,17.74345605791546,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,,Preah Sihanouk and Koh Kong,0.1888958005545457,36.93151941267393,51.14758438281897,23.91139160815343,19.63660165768873,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,,Preah Sihanouk and Koh Kong,0.0971154112684941,21.7239736483174,44.70425753624312,23.2789902588481,7.9026145781751405,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,,Preah Sihanouk and Koh Kong,0.0567589036708212,13.05944408077215,43.46196003426304,18.89774001637406,4.88028828658007,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,,Preah Vihear and Stung Treng,0.3835862284783098,72.17417039168666,53.147299982334516,15.63259475535414,42.553601189147564,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,,Preah Vihear and Stung Treng,0.309232119916017,64.28663256194702,48.10208710466189,16.55295275244425,28.88295214389787,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,,Preah Vihear and Stung Treng,0.1546112195693058,34.58125936858161,44.70953990466178,24.11679523798383,11.59740926511771,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH01,Banteay Meanchay,0.2213193582504262,47.98672798940034,46.12095208894278,19.42379741559605,15.93476586099561,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH01,Banteay Meanchay,0.132009118108511,29.66924000052833,44.493596096886975,21.95465511342729,11.606333578864641,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH01,Banteay Meanchay,0.0411257986622819,10.35946520916308,39.6987661350565,24.51061769112377,2.01195244198982,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH03,Kampong Cham,0.2587611380366954,53.19948864294908,48.639779185357064,23.52722659132354,22.60092836297573,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH03,Kampong Cham,0.1940748533247822,41.82139258224835,46.40564107068015,24.234305948333102,14.6263192671796,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH03,Kampong Cham,0.0997515959431277,23.85918470014166,41.808467974404614,31.82052115313969,5.42842142733214,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH04,Kampong Chhnang,0.2928129346181867,58.65776870807882,49.91886685554376,27.59473141239438,27.56835183163238,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH04,Kampong Chhnang,0.2212471701503243,48.254297212330336,45.85025229499962,22.980263723145537,16.917496189417168,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH04,Kampong Chhnang,0.0903103794765988,21.18890614718472,42.621539238163066,25.228928963253882,6.15139236696073,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH05,Kampong Speu,0.2116803203465139,45.47127861270164,46.55253311645047,24.96327034276708,18.58717328788764,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH05,Kampong Speu,0.1848530818080021,42.29061044178097,43.71019473991246,26.24881006739907,13.084179067408519,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH05,Kampong Speu,0.0986961574172127,23.021744299281092,42.87084251052805,23.200501948821188,6.8246893393537995,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH06,Kampong Thom,0.2965052135826804,60.44702943544985,49.05207358441198,16.506846646218932,31.12670802869743,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH06,Kampong Thom,0.216475607163407,46.30470755653265,46.75023741357518,19.48052814618698,16.5962391978977,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH06,Kampong Thom,0.0747580833351034,17.11046587805245,43.69143649735185,29.842684423876598,4.51688854815979,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH08,Kandal,0.1901533871576201,43.11426411004923,44.104518790406175,19.506944847260392,13.268807004459452,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH08,Kandal,0.141444449633446,33.23271270993388,42.56181277406391,19.32558529327891,7.60211774583077,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH08,Kandal,0.0514435547742599,12.83625800304089,40.076753491611775,19.65328141164309,1.9333742517763202,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH10,Kratie,0.3106064615276834,58.55092846465989,53.048938705584995,20.00212500846117,30.47942787697786,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH10,Kratie,0.2978950132450798,58.639629922478775,50.80097088588297,19.3309861861676,30.6733114578415,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH10,Kratie,0.1103539017823642,26.069208903720444,42.33112795632827,16.85052747765788,5.059737726925309,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH12,Phnom Penh,0.0163301316121824,3.3707034636782,48.44725081322516,15.42059753794662,1.6014640817038999,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH12,Phnom Penh,0.0308421919747525,8.282529818304491,37.2376467713897,12.09407816956919,0.5261343440740499,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH12,Phnom Penh,0.02219019362308,5.7513290272569195,38.582723259120435,2.97501534681667,0.69259291581301,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH14,Prey Veng,0.241348399924325,53.85288769171185,44.81624110966093,22.78870974191116,16.75214190229134,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH14,Prey Veng,0.1532307701326782,35.01824305975998,43.75741234966701,21.45657724271759,10.73393238622646,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH14,Prey Veng,0.0467129093354919,11.60366993214488,40.25701317656946,23.41272298276979,2.1187413296824,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH15,Pursat,0.3096036712530529,60.89964072254743,50.83834117570183,22.32377425443063,30.53027140885845,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH15,Pursat,0.2604613634352852,52.53667101749324,49.57705891729585,18.067854824227712,24.895778414901983,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH15,Pursat,0.1113678699708608,26.43835517792736,42.12360005808479,31.04065992623921,6.77298834000378,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH17,Siem Reap,0.2690294911838602,56.20844939279311,47.86282028593985,18.64951297217934,24.71782984992129,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH17,Siem Reap,0.2460407492062652,50.36402019429653,48.85248402670763,17.47013642321247,22.57460881280008,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH17,Siem Reap,0.0953689664454767,21.83322576646177,43.68065784945708,21.13500912980508,6.22875751949561,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH20,Svay Rieng,0.2483095241411165,55.84357479508333,44.46519139440524,21.737258687766133,17.10679653340438,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH20,Svay Rieng,0.1343009752465647,32.94181413775528,40.769149714993866,28.11830307756195,7.408675324446749,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH20,Svay Rieng,0.0389662947525326,9.39909523764333,41.45749539431497,17.17047479453473,1.76224879302933,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH21,Takeo,0.2391100496207954,50.97525259315022,46.90708480234696,29.101072338409377,19.35884583759806,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH21,Takeo,0.1153131519291989,27.596240419756278,41.7858194359858,25.14454303892929,7.32244084640196,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH21,Takeo,0.043958049176973,10.54920498153893,41.66953742381485,18.31599763763217,1.9240603165633,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH22,Otdar Meanchey,0.2553134028256127,52.81644954213348,48.33975116444367,20.70116540796314,22.08669440089599,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -KHM,KH22,Otdar Meanchey,0.2324018431033122,51.60915138203019,45.03113050299685,21.09248342369238,17.86172176609487,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -KHM,KH22,Otdar Meanchey,0.1001207791873466,24.98394205339557,40.07405195439891,26.948596234609663,4.26149593689852,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -LAO,,,0.2095536592498448,40.24112026089511,52.07450933056693,18.745676190881188,21.768258977903148,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,,,0.1083332502467847,23.072345770947912,46.95372170748026,21.18138687754113,9.5604842270575,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA01,Vientiane Capital,0.0186769578354287,4.48880404185533,41.60787074079781,16.275637559647592,0.8424770853353201,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA01,Vientiane Capital,0.0081439385453285,1.9646383372663798,41.45260932177497,13.11102511586292,0.40822991408349,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA02,Phongsaly,0.3476243816751866,61.762312277267995,56.2842239640584,15.59899683661015,40.48997080898676,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA02,Phongsaly,0.16562760789877,35.906778763827255,46.127114043887566,23.33331955017258,14.118710171556689,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA03,Luang Namtha,0.2087279318567461,43.551553038694,47.926633447789726,22.725094475284198,18.42656074843163,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA03,Luang Namtha,0.1057510662909534,23.58182848397511,44.8443030458032,25.63259483680284,6.83613306547026,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA04,Oudomxay,0.3055887156993857,57.50330691231349,53.142807276349615,16.43520842704147,32.78166434367015,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA04,Oudomxay,0.1387181526064855,29.028276890915826,47.78725004166413,21.212315801147092,11.76653758211418,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA05,Bokeo,0.256767115066774,47.78257304666767,53.73656098762159,16.84077321438755,27.34019721814696,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA05,Bokeo,0.1239018814909131,26.0368191903493,47.58718051736446,21.26934935090425,10.82603881485072,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA06,Luang Prabang,0.2345178835522435,45.219952980379716,51.86159385304903,18.021913458208,24.8013138505654,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA06,Luang Prabang,0.137116017429385,30.777266266862142,44.55107098872368,22.49033819409506,10.65869894869044,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA07,Houaphan,0.2285929658406738,43.91824227269276,52.04966182874923,19.32577847364767,25.1503590094363,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA07,Houaphan,0.1238941827986055,28.13017247086391,44.04316501327178,25.46041345061428,9.17228106561748,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA08,Xaignabouri,0.136669546262888,29.02238377464278,47.09108229155797,22.99016763887906,10.94829822072606,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA08,Xaignabouri,0.0429953220698709,10.13560599642214,42.420080343541564,23.27978807549187,2.24678711368202,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA09,Xiangkhouang,0.2100244701820442,39.88507272098276,52.65741187217391,15.76400398015488,21.519179397992218,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA09,Xiangkhouang,0.0613667693090082,13.835976872853669,44.35304414927901,27.42171925597973,4.446174652427961,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA10,Vientiane,0.0945916831477891,21.071798830576547,44.89017948032533,23.11233320358052,6.9918231206679105,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA10,Vientiane,0.0666054623916034,15.49317889281764,42.990184811252966,20.62109099602542,4.62042982455385,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA11,Borikhamxay,0.1281444287077057,28.36773194275402,45.17260278907765,24.01038868256834,8.86218137679962,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA11,Borikhamxay,0.0475597330804085,10.5901775943816,44.909287551174174,23.16544950479283,3.51321843902713,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA12,Khammuane,0.2414346027462969,47.06777809786984,51.29509241848326,17.41920700972239,26.48989667292098,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA12,Khammuane,0.1135370089812777,23.58937396138166,48.130573183989526,22.070460235700757,11.18790811614584,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA13,Savannakhet,0.2732030371295381,50.66010261094471,53.928638721413634,19.08282073397581,30.39591560079019,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA13,Savannakhet,0.1748524673438581,34.55497810786327,50.6012380612878,17.490065174586412,19.288074405227558,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA14,Saravane,0.3910000212472842,66.66462630359877,58.65179825153833,15.010640073991318,46.26404082780632,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA14,Saravane,0.2370773741912588,48.760477806656425,48.62080620524496,20.20018437596886,23.15781111195134,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA15,Sekong,0.3185517582378623,59.32016673545202,53.7004151823268,16.920707655190782,34.712784486805994,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA15,Sekong,0.1755683720569782,36.18984215077093,48.51316325877901,23.15867651295413,16.10414940824342,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA16,Champasack,0.1868607738933456,39.741531024897704,47.01901740430662,20.32866970846751,16.02665867684907,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA16,Champasack,0.0849003369858637,18.72740082292937,45.3348213073508,26.077607025526923,6.24743725092827,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA17,Attapeu,0.2619069433847672,52.73025284285148,49.669199229010204,17.95096567945991,27.011658776192572,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -LAO,LA17,Attapeu,0.1151253071031016,25.545104132977297,45.067464397015826,21.16185441760438,8.98347151287478,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LBR,,,0.4630768337628332,81.44774235909628,56.85569916980215,11.11100685418913,54.732342862106385,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -LBR,,,0.3259975151769866,63.5241224406194,51.318696371086446,19.9893121726661,33.15300445273329,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -LBR,,,0.2592937311100507,52.32307452422735,49.55628725333963,23.3137077514779,24.86187030292644,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,,North Central,0.5469584416576831,91.83376941807578,59.559620074794026,6.58854473687952,66.98739220980826,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -LBR,,North Central,0.4258312555309151,79.18049756007395,53.779815567316746,15.13764211056142,44.966205649122806,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -LBR,,North Central,0.3374647970202052,67.4482369764242,50.03315314797071,21.61403374515676,33.9160770632773,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,,North Western,0.5334416019169553,90.8246829510942,58.73310917079604,8.73003785389313,64.43141562336939,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -LBR,,North Western,0.4108078100372435,77.79440420936028,52.80685856680355,15.86249919353949,43.63508419371411,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -LBR,,North Western,0.3452993662991175,70.77470907110732,48.788525001522146,20.0770509609143,31.417899560348374,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,,South Central,0.3561450590033183,67.88394034491157,52.463816507082626,16.40537500850197,38.434856947999194,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -LBR,,South Central,0.2283664695759444,47.23396622626265,48.34793429838416,23.92452313112867,21.579856308037982,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -LBR,,South Central,0.1731434325913397,35.31372205806605,49.03007173999994,24.00462741727379,15.738595837929731,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,,South Eastern A,0.548150271061736,91.98615154090817,59.59052116860896,6.75044063018705,69.47802783927874,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -LBR,,South Eastern A,0.3958516247547313,78.48765451841379,50.43489032556854,17.38135186563813,41.09356506153298,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -LBR,,South Eastern A,0.3151610474583603,62.539090283880405,50.39424878548221,28.25370048302471,31.05569246430416,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,,South Eastern B,0.5244454012222074,90.27301250585616,58.095480217654796,8.85880155419157,66.41501998412818,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -LBR,,South Eastern B,0.37661752504427,73.07988294638362,51.53504765744934,22.18631955899964,38.9528860887051,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -LBR,,South Eastern B,0.2982036750474266,60.63011035163925,49.184089113135535,26.95875359296695,27.74054777690187,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LSO,,,0.1949866062210704,42.1709706647299,46.23716342013187,30.16619560617917,16.629927642850813,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -LSO,,,0.1276094643550502,28.347243342387056,45.01653399370877,30.59906163254087,8.96470168431798,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LSO,,,0.0843591908637081,19.604541730345982,43.03043244980731,28.59723148764044,4.99678008243942,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Foothills,0.2337054728184478,51.96376408945007,44.9747005271113,32.98199944798983,17.930275537008498,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -LSO,,Foothills,0.1702452361800662,38.76221022105365,43.92041506642407,40.67017780764698,9.56971371162647,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LSO,,Foothills,0.1544967653798321,35.50992245866066,43.508054842894,39.399873953780315,11.73504359628173,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Lowlands,0.1194100887806181,27.515713415190156,43.39705352313245,31.90658961521423,7.14080058814302,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -LSO,,Lowlands,0.0601337506189637,14.070777118996089,42.73662364943645,27.72281249444079,3.37417464349193,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LSO,,Lowlands,0.0408620381212657,9.84514079328875,41.50477781802838,24.13759534179534,1.70225035987907,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Mountains,0.3305281210468089,67.81655659261597,48.73855849572842,24.87757908543539,34.13482554687661,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -LSO,,Mountains,0.2471412422604843,52.839257763407396,46.772277416742256,32.35404696581932,20.67926109944691,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LSO,,Mountains,0.1847796958712508,41.61962511871018,44.39725137941784,33.82296518283867,13.05411314378685,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Senqu River Valley,0.254931381335934,52.69809578038892,48.37582412812801,30.1435970354325,27.27105185217743,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00 -LSO,,Senqu River Valley,0.1923792518158773,42.41064241646522,45.36107940236935,31.751282708729562,13.21397979196885,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LSO,,Senqu River Valley,0.1162578537997077,27.78022735300253,41.84913691397217,39.81456293644355,4.864237108190251,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MAR,,,0.0784595815261708,17.26182143606383,45.45266663589228,13.30661553648895,5.897151418543721,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MAR,,,0.0334365553266834,7.860996486465139,42.53475419338196,10.10247714943463,1.8909843453062298,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MDA,,,0.0055009573328608,1.50400841584766,36.575309518866476,5.342541907752961,0.048922176257300005,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -MDA,,,0.003307185333118,0.88073080524519,37.55046733260651,3.5572570936772996,0.06327383758665,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,,North,0.0059243190274206,1.68922799564484,35.07116293771289,6.20486076760082,0,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -MDA,,North,0.0056992137672134,1.44840869113833,39.34810528328361,4.59129334595365,0.19770108085683,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,MD004,Center,0.0087775235065663,2.2909589183240797,38.313753408495835,7.1761504570157495,0.17557577713994998,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -MDA,MD004,Center,0.0034720605889765,0.95655618379124,36.29750816324565,4.299774309421149,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,MD006,South,0.0056138334982923,1.57344892324126,35.678523880698734,6.16989708501774,0,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -MDA,MD006,South,0.0020211793309856,0.5967882120788001,33.86761484355095,3.4270681103785,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,MD010,Chisinau,0.0003874997421291,0.11008729054111,35.19931685341768,0.81551505406121,0,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -MDA,MD010,Chisinau,0.0001832774287466,0.05498322862394,33.33333333334999,0.62389730427833,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDG,,,0.4327705186655895,75.73937495297221,57.13943624888687,12.14688709443303,54.354656420475344,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,,,0.379068704780074,68.63130122549991,55.23262680603693,14.4981211736718,44.823403763583094,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,,,0.3637636140924381,65.70927586133793,55.35955301958664,15.818906845536072,43.33124098551368,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG11,Analamanga,0.2200177860046756,42.4041821582207,51.88586946064277,19.927028439693252,22.43049139347224,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG11,Analamanga,0.1776614266952165,36.68016708929999,48.43528282264623,19.0083952501642,15.827669290174452,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG11,Analamanga,0.1711294111549387,35.260119952875066,48.53341718169195,21.01300066197535,15.596743429498918,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG12,Vakinankaratra,0.4426354801552317,77.66930815712392,56.989754467721845,11.940915716185451,54.96337072996521,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG12,Vakinankaratra,0.3771466046959647,69.19260742621229,54.506777345854154,16.22647940665408,43.10015656094725,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG12,Vakinankaratra,0.3613286461752822,65.96768941537721,54.77357921392585,18.539369805717403,39.3552207379692,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG13,Itasy,0.4716825551050217,84.19766371400738,56.02086023516958,10.58434626532896,57.29953896182205,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG13,Itasy,0.3711846724522494,70.88754031506033,52.36247030190574,15.448127699304631,39.77751979718095,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG13,Itasy,0.3687511651129329,70.12060699825831,52.58813077902935,15.21065766273335,40.94184519737326,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG14,Bongolava,0.4419918258170584,80.58527275174038,54.84771729677034,13.25940206240519,49.93141972990107,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG14,Bongolava,0.4272787236684431,78.34833510358608,54.53577578943166,14.175893028369622,46.592195682428,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG14,Bongolava,0.3941138793344258,72.16557511347374,54.61244904024086,14.741064496778861,45.897879538060934,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG21,Haute Matsiatra,0.4702619662253658,80.74650725401473,58.23929507514198,10.3521379177652,58.98222751649011,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG21,Haute Matsiatra,0.4059385366844617,74.72328898777059,54.32557134240955,15.903063543432749,44.570164368804484,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG21,Haute Matsiatra,0.3827610872944002,68.85536194650231,55.58914752227855,21.358853709164823,45.42229473133335,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG22,Amoron'i Mania,0.4874405754612017,80.33627927196203,60.675025017162085,10.809216321524561,63.09467010694186,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG22,Amoron'i Mania,0.4195979528470599,76.66910232535143,54.7284290699613,13.85440310253763,50.860060603862976,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG22,Amoron'i Mania,0.3917334472478519,71.6227042948574,54.694031886196,15.37722981255127,44.662004910416506,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG23,Vatovavy Fitovinany,0.560601215492079,93.04623231912319,60.2497491321701,5.3225182544084895,79.1153203664623,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG23,Vatovavy Fitovinany,0.5029166543754812,85.30498796586717,58.95512869384749,8.449364323857809,66.78396292021748,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG23,Vatovavy Fitovinany,0.4359679453704954,77.23899655976638,56.44401983305804,14.04239909323265,56.64390783825278,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG24,Ihorombe,0.548654816578305,89.58324032646732,61.2452524131576,7.15591571539235,70.47730103275184,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG24,Ihorombe,0.4752643188120285,81.13710342479555,58.575460393720135,9.25813330150352,62.54394075380997,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG24,Ihorombe,0.4638893918331538,81.62534264726855,56.83153991007192,8.730127618130771,61.016658075502285,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG25,Atsimo Atsinanana,0.6108701369634087,96.35723101763769,63.39639801932374,3.0320354809191397,86.41425587625935,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG25,Atsimo Atsinanana,0.5336602676335218,91.15995936948744,58.5410822168648,6.27977673985319,70.1772009127327,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG25,Atsimo Atsinanana,0.5543746885071813,91.0695405702792,60.87377679031613,6.07362429789326,74.70138780738502,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG31,Atsinanana,0.364753645598239,68.98459659389047,52.87465080727064,12.07111973278321,49.35251903683235,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG31,Atsinanana,0.3438485928473441,65.82693997470999,52.23523879120725,15.090617992358979,38.709848381443166,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG31,Atsinanana,0.3714780359861788,66.30518249957008,56.02549031345889,12.944030155023919,47.45268654780513,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG32,Analanjirofo,0.46804108776044,86.09531418436033,54.363131396233676,10.33636678528379,61.0133368341505,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG32,Analanjirofo,0.2737758222619404,56.35611079944376,48.5796160129351,23.26172408437898,25.233516593517457,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG32,Analanjirofo,0.2774253177103476,56.60117985765044,49.01405207595676,22.15621236683096,27.86042558427479,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG33,Alaotra Mangoro,0.3851327660961558,71.56839557220785,53.81324577935824,16.908868251159152,39.49567900485065,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG33,Alaotra Mangoro,0.3387296576427872,64.7068019316541,52.3483849504055,15.308233158228091,37.64293558630915,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG33,Alaotra Mangoro,0.3071782694082604,57.20001601174256,53.702479619096586,15.885200387459461,35.11469863619456,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG41,Boeny,0.3740272791761367,67.33168073548998,55.54996921070322,17.20458328413988,44.30650927285268,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG41,Boeny,0.3926386646106625,67.79175004499966,57.91835501370475,12.2482443377888,50.65638066475482,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG41,Boeny,0.3158019727608489,59.22859771012352,53.319170969815325,19.63521911553593,37.00056719888203,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG42,Sofia,0.4550183789874725,82.27798987185434,55.302563868678725,14.05611369366652,57.22104245860161,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG42,Sofia,0.310769233973679,61.44056051882749,50.580468561716465,19.948828269769418,33.18772212102763,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG42,Sofia,0.358059514499341,69.39976708167852,51.59376314302767,19.37284817836972,40.46848286892761,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG43,Betsiboka,0.4816451843554945,82.10040620785314,58.66538383940707,9.7901649125918,68.46867361575165,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG43,Betsiboka,0.4243294592149246,75.9841658449087,55.844458446911624,15.357414752604178,49.22271927931859,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG43,Betsiboka,0.4390007286959294,79.73325100990927,55.058676666949204,11.6277011664918,55.23398695664059,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG44,Melaky,0.563779881882607,93.66832612068806,60.188956633664844,3.11092219406037,79.44736195597399,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG44,Melaky,0.4815738597971198,84.3663647045869,57.08126235892408,10.80901099703059,64.31611159451211,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG44,Melaky,0.4514181801425365,78.26062494707168,57.681392200462824,10.00058370425408,56.76751522885032,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG51,Atsimo Andrefana,0.5067961071407471,81.35893638565483,62.29138797223819,8.47579985829843,68.94545273013865,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG51,Atsimo Andrefana,0.5470425262854526,87.90374494819588,62.23199325669688,5.34898650467586,73.58407250106349,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG51,Atsimo Andrefana,0.4292926602871724,72.34002068183723,59.34372927197092,9.97541924143162,54.94286979057941,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG52,Androy,0.6238756448921625,96.02446728108049,64.97048747648545,2.69210332507037,85.72739046957018,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG52,Androy,0.553080091660903,92.67242691027687,59.68119214104335,5.5350306385024,71.97398802711984,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG52,Androy,0.5643450568126239,91.29716504596637,61.814083331994716,6.922342331396269,77.27535149966448,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG53,Anosy,0.5660602415879116,91.02235315796233,62.18914606674222,4.1488453351766905,73.52119869932106,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG53,Anosy,0.5125568737472042,84.11055568084336,60.938471943057436,8.19100049952352,70.27521685910423,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG53,Anosy,0.5572826525297991,88.94680791975723,62.65347408898002,5.9962324133710405,74.44486512694452,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG54,Menabe,0.4866747391145756,84.73880555917076,57.43233408863004,8.929692533027481,59.72302780666541,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG54,Menabe,0.465134232662009,79.46739759887953,58.531453994482796,10.732639860301111,59.70925931478083,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG54,Menabe,0.530275443679994,87.05416873158242,60.913274046072765,5.9953896436476795,67.03703238798411,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG71,Diana,0.3780231337661039,72.84064954450984,51.89727660722051,14.365683709967008,39.44438013172997,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG71,Diana,0.2499970815733714,50.793925336305435,49.21790940907723,23.65335871783012,24.24319914703656,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG71,Diana,0.2074631753844628,44.33327449317098,46.796267082960455,19.623171899101592,18.70708921018239,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG72,Sava,0.4320669501468747,80.10828445412564,53.935364249910975,16.50372301761603,52.586731178928915,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -MDG,MG72,Sava,0.2548570806080505,54.851952172444086,46.46271837451264,25.37515899857063,21.962600784594912,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MDG,MG72,Sava,0.2776280550852299,57.05514987949217,48.65959614015841,24.485696054685622,27.714529270699572,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MEX,,,0.0252732992623592,6.01396656817235,42.02434279583927,5.35529926282766,1.41219148360863,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MEX,,,0.0209135487310485,5.25263540018833,39.81534437036808,5.4294564524616,0.95256675256284,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -MEX,,,0.0161975355497302,4.13675694093226,39.15515410020654,2.7916850194425797,0.65445331789309,2020-01-01 00:00:00+00:00,2020-12-31 23:59:59+00:00 -MEX,,,0.0165315825480978,4.07600355047634,40.55831243367254,3.49987089681886,0.7627814699708,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MEX,,,0.0199011677274614,5.00236330618019,39.78353132183426,3.1276887773111097,0.90688899388611,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -MKD,,,0.0310334435585578,7.62512132610309,40.69895052334572,4.674108183985879,1.1319492430718199,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,,0.0083618682024438,2.2015678199473,37.98142454064392,2.31176921838735,0.18804707358577,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,,0.0051743650824537,1.3690002802476,37.79666927108208,1.29391430887618,0.05050369586433,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,East,0.0107880164294162,2.5081274941309,43.01223304899959,1.3753633803012901,0.6517867713518201,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,East,0.016070467304997,4.18805971373449,38.37210642507056,7.4540290059616,0.39987110167599,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,East,0.0086375936906047,2.11251438172992,40.8877391098823,3.96028976696422,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Northeast,0.0417175787695941,10.45724163658286,39.893482640443466,0.51279849134985,0.91369926854129,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,Northeast,0.0052907919092465,1.51158182488465,35.00169042883403,2.70521562795146,0.12926043569293,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,Northeast,0.0018427535889283,0.5076051607376201,36.302893103973624,0.6522030268294999,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Pelagonia,0.0317426908719122,7.952375171100851,39.915987599863136,3.13785595580972,1.44249021969603,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,Pelagonia,0.0036925363795504,0.93976783757724,39.29200630093792,2.31447408643683,0.06927011461731,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,Pelagonia,0.0040470238124227,1.1640967101636601,34.76535735466296,1.0348984459372899,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Polog,0.0239943620297287,6.43849213488947,37.26705186095664,5.1264662866816195,0.2434680237149,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,Polog,0.0093040255572298,2.48144661169519,37.49436120599755,1.80350483254401,0.43645255305658,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,Polog,0.0008681669101221,0.23387353497167,37.12121212121182,0.02008691830491,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Skopje,0.0254496409856122,6.66945197188208,38.15851901011669,4.22806687296252,0.9503183537337799,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,Skopje,0.0062379292351881,1.6451373771672801,37.91737590892869,0.40062629549183,0,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,Skopje,0.006177585661716,1.6995562554214998,36.34822702696548,1.21017713887704,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Southeast,0.0966911456085821,21.65566596749504,44.64935216202294,9.58640859010559,4.338140792531011,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,Southeast,0.0036816253826392,0.9912828946895,37.14000718021499,2.3100067974677,0.14779401922062,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,Southeast,0.0107885350454399,2.4661267201123,43.74688031014338,4.10883804892102,0.80945140345143,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Southwest,0.0287933412974904,6.60901676127168,43.56675484047355,9.693315701542051,1.02973171903082,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,Southwest,0.0175008266907998,5.0249266608805705,34.828024112361774,3.07226651569583,0,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,Southwest,0.007914995308825,2.06289478416008,38.36839071774411,0.40993478476097,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Vardar,0.0238153876754776,5.58508651500207,42.64103628745449,1.00562809697464,1.5476933615575301,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00 -MKD,,Vardar,0.0134121990286198,2.87187344780804,46.70191522142703,3.49255027437686,0.7993408281144899,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MKD,,Vardar,0.0015446190543741,0.45139407222678,34.21885995875698,0.38374908223688,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MLI,,,0.501303773494839,83.72555942317105,59.874640067929306,7.81221909276866,64.00084461426778,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,,,0.4195097918069611,73.99452891237335,56.694704050857304,12.34424217199887,50.98859976408183,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,,,0.3613645810996384,66.43956310474366,54.38996950204776,15.839141728864309,41.90139299654321,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML01,Kayes,0.5292209117293104,89.18579784020883,59.339146427494846,5.15662472382202,66.6309650573576,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML01,Kayes,0.4226667886441789,75.5648365381196,55.934321836448966,11.96462768229844,49.08079402184015,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML01,Kayes,0.4094082928463085,73.8691677266497,55.4234338149456,13.1700006971341,47.83486340599481,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML02,Koulikoro,0.5509583232520607,89.6831335169152,61.433884125842276,4.81500436889203,70.70519515355801,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML02,Koulikoro,0.4334161923921299,76.92524721927998,56.34251537166344,12.43041077660312,53.04874820686252,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML02,Koulikoro,0.3350608357173122,62.334937266338066,53.75169213465318,16.76235669748855,38.70130127512053,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML03,Sikasso,0.5604840223005617,91.56476056704153,61.21176081601713,4.66465969126133,72.61610779478384,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML03,Sikasso,0.4765269027829444,81.42652832563306,58.522316078276546,9.91122709728738,58.188976356669706,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML03,Sikasso,0.3938167410800736,74.50195963210261,52.85991711154663,12.82325998804175,45.20779208761602,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML04,Ségou,0.4988757655218738,85.03796377787285,58.6650647968223,7.03505170225055,64.15201988740257,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML04,Ségou,0.4239389801010731,77.37599447670944,54.789470942267606,10.917560824652341,49.87542234998047,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML04,Ségou,0.4044434560343647,74.12493942667726,54.56239953280924,12.579502894475162,48.434063117737395,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML05,Mopti,0.5826686448559536,93.70384200685092,62.18193751472361,3.41824119793247,80.6344512405468,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML05,Mopti,0.5311574382646639,89.97763949267576,59.03215968539614,4.64068520783666,69.68172618756262,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML05,Mopti,0.4884923836978305,85.66766509280852,57.021792664550844,8.57642572202444,60.012267193801804,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML06,Timbuktu,0.55695956922867,88.32393526027998,63.05873573084998,6.385755025762729,70.9184365831249,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML06,Timbuktu,0.5471365395207034,89.92287926018267,60.84508681462655,4.71107569982368,72.05804696533446,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML06,Timbuktu,0.5265793164669902,86.53754302081127,60.84981131719379,6.392900729591861,68.11251238572513,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML07,Gao,0.5001608771044099,84.54351532780994,59.16017037676764,8.290945334137561,61.56454759047276,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML07,Gao,0.4895735862255245,86.1467574159794,56.83018153097814,7.503004006453449,64.40654764933377,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML07,Gao,0.4598473462429531,82.38523084677222,55.81672121526494,10.9651492098563,56.52716974226375,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML09,Bamako,0.1863776755447209,40.25466284091798,46.29964888322751,26.950565626243026,14.90089012047982,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -MLI,ML09,Bamako,0.0960997948274379,22.3636808164991,42.97136755615783,32.01700162811168,5.351151079853969,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MLI,ML09,Bamako,0.1019801346915959,23.49482059627199,43.40536854653719,33.36130664500967,5.33328384897606,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNE,,,0.0016391029679038,0.3710669222781,44.17270496224227,3.8192641597893,0.09428237281132,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -MNE,,,0.0048989004059962,1.23576477538312,39.64266099490788,2.88806879116208,0.05945725353869,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,,0.081109879119062,19.593283141331188,41.39677793353797,22.28015745408116,3.85874388811259,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MNG,,,0.0558023064760896,13.374105288642399,41.72414174388041,18.74301491230431,2.08027660653867,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -MNG,,,0.0389974904653427,9.92383515296073,39.29679389495701,15.85211988632661,1.39069221764802,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,Central,0.0749883432675039,18.23703021083322,41.118725143614135,22.928234561247372,3.04900011056939,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MNG,,Central,0.0940172712948991,22.294070977016588,42.17142369010279,29.6957148625189,3.1456368810317,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -MNG,,Central,0.0704438839322219,17.84350013125026,39.478736466535395,21.90815979520583,2.4096353103205,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,Eastern,0.0893468215218899,21.98276929511554,40.6440245641582,32.08895997745455,3.45837542536611,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MNG,,Eastern,0.0125870932660763,3.45579663825551,36.42313070953822,7.14669799677624,0.25611461403046,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -MNG,,Eastern,0.01117735804565,2.98060758173018,37.5002671071572,9.55828258780547,0.33562585311267,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,Western,0.1433005977101899,32.74932508128392,43.756809447070246,30.32138677291329,9.39482076339214,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MNG,,Western,0.053654935279218,13.05619736707685,41.09537698512196,23.19213983969722,1.18064719886994,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -MNG,,Western,0.028187416879063,7.42250703169659,37.97560144933949,17.98194448711805,0.72889276325193,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,MN11,Ulaanbaatar,0.0301343588630768,8.4540160945863,35.64502187590336,12.504308268538539,0.29597571136915,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MNG,MN11,Ulaanbaatar,0.1250103745857682,28.50586081716021,43.85427101731776,29.305255723558883,6.78632638247465,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -MNG,MN11,Ulaanbaatar,0.1163871864743566,28.68448428521423,40.57496217017568,26.44561843986751,5.15669556990391,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,MN62,Khangai,0.1329792498989949,31.02445712862869,42.86271612994143,30.363345798661,7.352272998855209,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MNG,MN62,Khangai,0.0658293158460479,16.26038996991767,40.4844631450012,22.89655604356632,2.52942894515705,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -MNG,MN62,Khangai,0.0343017372484084,9.0851871625196,37.755674852707735,19.15975260575124,0.78490876894887,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MOZ,,,0.5125519537535285,83.856075471408,61.12281678723337,8.549291304618741,64.90696826820252,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,,,0.4004151871122222,71.15650916348706,56.27246077969347,14.0685879458679,46.79794880766596,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,,,0.3301973792132712,59.85408747357454,55.16705594401594,17.06086164689268,38.32174293368019,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ01,Cabo Delgado,0.5907835190804778,94.65009265016468,62.41763769466843,4.16001298363682,76.03626629121646,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ01,Cabo Delgado,0.5309802493245984,87.62109752999973,60.59958894520817,8.59854928239508,67.03190912409809,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ01,Cabo Delgado,0.4208818514113091,73.6102682430218,57.17705714938872,13.97873527892656,49.81211235152193,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ02,Gaza,0.5074541527585971,85.94837759398118,59.04173725719443,9.50363793663852,62.045134139043746,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ02,Gaza,0.3389336543668435,64.42325277439438,52.61045348855093,17.26572414789894,37.35090916457353,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ02,Gaza,0.1471545720308985,32.66157045819756,45.05434673425661,26.181107763403787,11.219689551361189,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ03,Inhambane,0.4858513693270218,82.95558121961444,58.567652975728244,11.039617212275001,60.51984923830291,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ03,Inhambane,0.3473265385783705,67.40790185499306,51.5260865596343,18.44147169234552,38.34109245288253,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ03,Inhambane,0.1854670723848515,41.87032910613454,44.29558504656662,24.649763262588632,13.501293129972062,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ04,Manica,0.5096831508967326,85.11114634933783,59.884418523132474,10.504247116332149,63.27652426964035,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ04,Manica,0.2921243975642958,59.43214646423043,49.15259080203551,22.10012596800915,26.61734341810847,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ04,Manica,0.27364302812102,53.254636036635816,51.38388851869554,24.85805213262657,28.10104849066752,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ05,Maputo,0.2847387775889985,57.84053865237324,49.228237534284354,20.16900556418161,26.409223265672722,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ05,Maputo,0.1418022079870438,30.515500003089418,46.468911855511955,22.15916056288649,10.94989528751058,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ05,Maputo,0.0499527911503259,11.18326505534583,44.66744810492304,16.38647311969315,3.56786337451249,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ06,Maputo City,0.1383619239322221,30.472319425247818,45.40577367982773,24.27750612169765,10.172453631398989,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ06,Maputo City,0.0416027625135411,10.050121594953659,41.39528275402216,21.99457527687032,1.94197010234307,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ06,Maputo City,0.0139671513164052,3.84057355540107,36.36735793476182,10.45525846369816,0,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ07,Nampula,0.5710273802693485,90.61241669285862,63.018667982878405,6.57575344950417,73.98432973133166,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ07,Nampula,0.4413806034304926,78.20974389241886,56.43550042020754,12.8894991180254,51.88075943063938,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ07,Nampula,0.4340330237857398,74.52182280801155,58.24240570496062,15.07174787882942,53.18817331407135,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ08,Niassa,0.5963679720037504,94.12489639836336,63.359216830343314,3.90572689034377,78.04125844441423,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ08,Niassa,0.4643775526302891,81.57790642387624,56.92442635355188,11.55314453260748,55.87592436827896,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ08,Niassa,0.4259291676867638,75.1984001950597,56.64072195444738,14.951733989075969,50.44884298685166,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ09,Sofala,0.5239861877519042,84.24295356509886,62.19940844630922,7.843623356541659,64.9469930992116,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ09,Sofala,0.3766491426312133,69.71834742895511,54.02439336575342,13.482738962383301,41.84313791210021,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ09,Sofala,0.3037632067076744,56.66162006577421,53.61004615735633,14.54526342730219,33.39124439474424,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ10,Tete,0.5907543876113459,91.2381793664323,64.74859447148197,4.79124535689116,77.41420684002989,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ10,Tete,0.4766279540548056,81.69787491572215,58.34031234551512,12.188106601729611,58.348734653940205,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ10,Tete,0.3435281840178625,64.03430443043443,53.647523319483305,20.94396993516815,40.148204508233185,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ11,Zambezia,0.5981143985516674,95.33381808144144,62.73895356217795,3.02360244521299,80.44473628421699,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00 -MOZ,MZ11,Zambezia,0.5151764035025982,87.21296434147261,59.071080474398585,9.49533055542128,63.50630701532336,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MOZ,MZ11,Zambezia,0.4213333572531224,76.1063947332893,55.36109793791471,14.46759682127723,51.22087688225141,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MRT,,,0.3556429402338519,62.661787693438754,56.75595180491327,13.889606547120101,41.23396640539879,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,,,0.3072564863169368,56.185806314161844,54.685783914698696,14.067301524930912,34.425596901908314,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,,,0.3209276310990076,57.40698711658885,55.90393212018431,12.38972116015897,37.37224379643088,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR01,Hosh ech Chargui,0.5107147965316763,85.55100960045472,59.69710923539606,9.22576814537965,63.104500847048406,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR01,Hosh ech Chargui,0.4723490114096384,81.65559113833659,57.84649952621248,10.59530283423959,56.300988548358234,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR01,Hosh ech Chargui,0.520407695031,87.01377235324593,59.8075087376196,7.2577445962884095,64.44503616847726,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR02,Hosh el Gharbi,0.5438074384688814,88.16460339738778,61.68092607616651,7.13273092416829,71.01635310678446,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR02,Hosh el Gharbi,0.4469583988006154,78.8145958270621,56.71010478583788,10.83363279072677,52.00426298694908,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR02,Hosh el Gharbi,0.478383193065914,80.89027295407233,59.139767439965084,8.25738412053828,60.095285435454336,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR03,Assaba,0.4960216341536663,83.49240949285274,59.409189070789445,9.56011148206431,60.22368602965541,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR03,Assaba,0.4218957981857139,74.55106064655797,56.59152190817191,13.76655467012805,48.46808458373213,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR03,Assaba,0.4256770363774168,74.08566957658297,57.457405569830314,12.1530998993171,51.762589612390364,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR04,Gorgol,0.5064345632525158,83.78651218509276,60.44344728585328,9.00606265693424,64.32223138761928,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR04,Gorgol,0.4330943611871872,77.20460738232568,56.09695792408558,12.83989257302243,51.52211623873134,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR04,Gorgol,0.469222622304355,79.19333353976603,59.250267835832446,9.89637223141596,58.89187225762728,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR05,Brakna,0.3893160272918119,71.43813146218893,54.496949923427174,12.96689534648772,43.60390458881463,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR05,Brakna,0.3598784332344016,67.52205542899935,53.29790850529131,16.38754873678414,41.09619108045365,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR05,Brakna,0.3308972166645513,63.70483227361588,51.94224752736633,15.634979688558658,37.13933293940702,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR06,Trarza,0.2695408148763321,54.55602666033873,49.40624003915658,19.06779476147322,25.664030521992398,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR06,Trarza,0.2172108015814146,46.25452363980164,46.95990456477352,23.00979848320751,18.689272898795732,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR06,Trarza,0.2221645558352222,48.11357402169265,46.17502656008392,19.63203178332886,17.9840125400199,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR07,Adrar,0.2436488495447058,47.096990477034836,51.733422258373906,21.32063700284509,25.238251674424077,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR07,Adrar,0.2060480659821548,42.195796213231276,48.83142030095041,26.24069991681766,19.526115471047937,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR07,Adrar,0.1882907457805345,39.60799864256728,47.53856600524516,20.20093105716749,16.13422217313343,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR08,Dakhlet Nouadhibou,0.0787464165050976,17.82205177766926,44.1848208542215,11.73231141574661,5.0839491897435005,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR08,Dakhlet Nouadhibou,0.0442007823929078,10.92361920639783,40.46349617077456,8.21282891181941,2.71444009178513,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR08,Dakhlet Nouadhibou,0.0462868273781335,11.61150247147485,39.86290963795858,11.52792696910839,2.25647777773407,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR09,Tagant,0.4019553860674575,72.11417240860838,55.73875046224279,12.8989633827881,45.39235788421457,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR09,Tagant,0.3199415205372924,60.6952440656339,52.712782601437084,16.245534575737032,35.84182520168962,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR09,Tagant,0.3703681722721774,68.23101006656381,54.28150219538874,12.29503469315612,41.09832880794978,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR10,Guidimaka,0.5323013506327463,86.07933476134825,61.83846007970806,9.34646872794353,63.026330333088076,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR10,Guidimaka,0.4590092664376204,77.83776000957398,58.96999944257932,13.95275773855054,57.19759827186448,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR10,Guidimaka,0.5166531515066205,86.00051594392747,60.07558743525201,8.471577376081681,64.62682052179623,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR11,Tiris Zemmour,0.1251259433478238,27.144921117574526,46.0955266017749,20.574117892184148,10.014875229321731,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR11,Tiris Zemmour,0.0451402645406938,10.63161101607794,42.4585365965979,13.326561052011629,2.6526506930428897,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR11,Tiris Zemmour,0.0709865488557057,15.95548115196807,44.49038432598422,15.17555858137416,4.85604475015651,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR13,Nouakchott,0.1333095961842173,28.80166733099999,46.28537461118878,20.8182939952519,11.46834923422336,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -MRT,MR13,Nouakchott,0.0819392955734472,18.94307330449096,43.25554478745613,14.673266548726998,5.22033201061201,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -MRT,MR13,Nouakchott,0.0859893148955726,20.099573175171802,42.781662150812124,15.53760738605175,6.12194841505727,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MWI,,,0.3303246474262055,66.75418371962137,49.48373705139199,23.49258994110574,31.497953411014763,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,,0.2435909612245465,52.575759248622845,46.33142054547258,28.15829196360061,18.86296766159001,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,,0.2312647991981619,49.9250970007948,46.322353503785926,27.54343628987572,17.54728667544996,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Balaka,0.3525021592108629,73.06056530373729,48.24793754953758,20.79784825498809,32.08403921088059,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Balaka,0.2400609175577648,52.32967878614053,45.87471643746162,32.51842110472591,18.96059821598281,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Balaka,0.2391080992252244,52.121140547607105,45.87545412726047,29.003283877705332,16.63463914467982,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Blantyre,0.1952423105929895,44.70634833583617,43.672166898159546,24.09807684611436,14.125607315154658,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Blantyre,0.1514394920846483,34.1430077946951,44.35446724414771,29.857743589845594,7.90359342301115,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Blantyre,0.1149934296162484,26.591290201047542,43.24477253522597,24.18619627206294,6.599469937979589,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Chikwawa,0.3750244729260099,75.64959116539076,49.57389288543591,17.65094214355689,36.88560493297882,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Chikwawa,0.3070482624774693,64.4316578416081,47.65487537698997,21.06335924633123,26.53743016898255,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Chikwawa,0.2152026090356788,48.063235477740704,44.7748901830266,28.37063678022143,14.023808037436151,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Chiradzulu,0.3206026695530192,67.51740371814313,47.48444873434427,26.657028161813027,25.76420746608369,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Chiradzulu,0.2071532747204041,45.046742121751436,45.98629444955516,37.95946279187124,18.23403988127285,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Chiradzulu,0.1948087051761976,44.17141025406783,44.10289462249108,35.05165305789517,11.87911780842148,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Chitipa,0.3029431611946496,67.4170646910826,44.93567950233237,25.2522764703433,25.665106962289357,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Chitipa,0.1428220506438721,34.66531997177001,41.20026896050012,32.949956756665024,6.84294249968133,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Chitipa,0.1353101405232427,31.59891370122167,42.82113676522092,37.78545686919808,6.645377049276339,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Dedza,0.417255567563118,80.41370978522116,51.88861062094704,15.216415623390562,45.42689679861513,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Dedza,0.3197519114815719,67.61677060380448,47.28884692750779,24.68606152892291,26.67989790451318,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Dedza,0.318156467593233,66.28675165648883,47.99699180342752,22.34961989349387,25.89433592120054,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Dowa,0.3436923692901832,67.85486023225607,50.65110562659485,27.88511209691879,31.41527340221797,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Dowa,0.2696069053858794,57.21784996543805,47.11937018757837,30.672945582677652,20.33165345094591,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Dowa,0.2411656500843705,52.361874285888476,46.05748999121764,27.47730202381672,16.57569195498351,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Karonga,0.2432655159714688,52.84830891574508,46.0308988049744,36.67538899281731,20.97554966592228,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Karonga,0.1765155492771123,43.63736630064687,40.45055058111874,33.54046334586729,7.31964180203423,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Karonga,0.143156233311527,33.55449297580337,42.663804640040034,35.49463899019156,8.595341484327811,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Kasungu,0.3256674158055017,65.4326788949273,49.77137132478757,24.96730396284909,31.348435577369,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Kasungu,0.2461571472146655,53.42528851315457,46.07502440610232,34.137269817695184,18.17372882982273,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Kasungu,0.1886743015691452,42.05933286975745,44.859080897312694,32.20210326120745,14.450832018079602,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Lilongwe,0.3215038595424435,62.760967846233626,51.226721093616376,22.320390391815952,34.157425960333434,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Lilongwe,0.2106308920824428,44.46120760672113,47.374082581284185,27.102848128828462,17.85655972029698,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Lilongwe,0.2305725810515384,49.58858692769037,46.49710655957131,24.10717910341594,17.16368055814123,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Machinga,0.3742763450148305,71.3887250955389,52.42793515557812,21.2725919334237,40.28605458939511,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Machinga,0.324562401301305,66.21425773662068,49.01699609656749,23.748352052448958,31.09559957739571,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Machinga,0.2889134674308709,60.49652455952913,47.757035554427205,25.964964650629728,24.78538071731617,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mangochi,0.4044085515434421,75.97601774182395,53.22844807655927,16.164216258330242,44.75426485800692,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Mangochi,0.3128446759854026,64.24022073060092,48.69919069820047,19.19958124254967,32.43747506387916,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Mangochi,0.3778532250889357,74.13254017330173,50.96995519182501,16.43277281067528,37.97324590036459,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mchinji,0.3726421156924842,75.30593542882808,49.483764270436495,19.94051402458706,33.390282274254616,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Mchinji,0.2940429499969234,61.47677014337531,47.829928168178036,29.325679837302708,23.79741520840708,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Mchinji,0.2772215333640763,57.531401739592894,48.18612531272526,30.297470352391347,23.62112382795296,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mulange,0.323746537976313,65.1019704238147,49.729145810598155,27.987202780166882,26.86706572210883,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Mulange,0.2644926003993693,58.25877526345026,45.39961562928764,25.947488168748972,17.20835550856737,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Mulange,0.2048275963103444,46.593932931911844,43.96014318208784,32.11599899794784,12.47978954709831,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mwanza,0.3523178448743527,72.58440925964909,48.5390524587781,19.79884487301504,34.382624758347255,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Mwanza,0.2442725444740542,49.7039169309665,49.145532094245794,26.915690979463307,24.27351839151794,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Mwanza,0.2659878828102191,57.293880239327535,46.425182183356526,24.675502144754972,21.55143098224585,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mzimba,0.2678703891716102,60.641500885797726,44.17278353253054,30.75990902178283,18.465751239249002,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Mzimba,0.1690591919061795,39.309606546367846,43.00709336959778,36.74301871573281,9.162865530968391,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Mzimba,0.1547549322270768,36.14247054644864,42.81802817773425,33.71222845881617,9.21326661701542,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Neno,0.3504659907521194,70.1672237459432,49.947250588260886,26.361812128334112,37.319957547508544,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Neno,0.3028935030193525,62.526321849207164,48.44255891939902,23.95578404731717,24.8692008351127,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Neno,0.2371971929040723,51.65252581281926,45.92170260243189,32.44110974908423,17.10185490230144,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Nkhata Bay & Likoma ,0.2836434526587377,63.58041554551325,44.61176452294422,25.96831792774165,20.83979971151948,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Nkhata Bay & Likoma ,0.2074472432179048,48.24279949718007,43.00066442662198,31.625209332338773,11.60756563900497,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Nkhata Bay & Likoma ,0.1683431455621184,38.91118982266925,43.26342790578034,31.062310274003668,10.11046995014292,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Nkhotakota,0.343289599672448,66.386638504466,51.71064651049535,27.931016304558533,34.70110877660854,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Nkhotakota,0.2152996748644973,46.11021269158104,46.69240549909836,29.84657564536627,16.88046453401513,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Nkhotakota,0.2438937666759424,52.21543537892247,46.70913206143517,26.497477074908993,20.524253495048033,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Nsanje,0.404490187508274,79.08913308269582,51.143585944397415,15.087198212941061,45.610382475372,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Nsanje,0.285751280731559,60.409713190271596,47.30220781408651,28.30999465603121,22.5854719245732,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Nsanje,0.269800518681296,56.58258119793932,47.68261061429306,30.533951897699453,24.88785246158136,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Ntcheu,0.3471303727636956,68.93211700052123,50.35829274778706,26.15520898126256,36.318027349973484,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Ntcheu,0.2129934232801757,49.102705159008245,43.3771260850993,29.997631613594983,12.83278514800238,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Ntcheu,0.2262277381300248,49.522920052817845,45.68142142845079,34.2628134707178,16.62191044199875,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Ntchisi,0.3565445684780159,70.11456948404029,50.8517090102327,25.11088473367979,36.17317282147456,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Ntchisi,0.2799050494123538,59.53926466726905,47.01184184530717,24.76773197607412,23.94613182499575,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Ntchisi,0.2388818611802484,52.85908174077942,45.19220790700137,30.609160755244258,16.75220289173047,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Phalombe,0.3881329139081184,75.30892910909677,51.53876419432909,21.63213799483409,36.32448385168289,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Phalombe,0.3014817148191375,64.95739815820221,46.4122214508786,23.91584124507229,24.1601732131221,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Phalombe,0.2425735742127437,53.14324500338235,45.64523190055575,31.701956547271138,16.39948557897449,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Rumphi,0.2133941484010451,47.812349767206506,44.63159611272811,39.59467381943842,15.801453058804249,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Rumphi,0.1648135727889544,40.02704619652875,41.175552145351055,31.95934299872134,5.04671618957654,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Rumphi,0.1054294949305843,24.62733004906594,42.80995736059623,40.82288900620015,6.20484274411465,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Salima,0.3236048366969562,63.79118391553924,50.72877109874858,29.171297360738556,31.602570423486398,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Salima,0.3201371012405252,67.21360837967846,47.629804284888884,22.13437806914463,26.17527976570718,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Salima,0.2613089280333955,56.458103968307874,46.2836881982573,24.69568280207318,19.62295108960803,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Thyolo,0.323111880740464,68.67451383108065,47.04975146023245,23.312438185370592,28.652777388580557,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Thyolo,0.2459490697608806,55.046136372610896,44.6805327255005,28.46181494468814,14.702120281807348,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Thyolo,0.2699113705960898,58.52531323261244,46.11874002678303,26.898669300793532,22.57883762117966,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Zomba,0.3232641795584576,68.28462685755746,47.34069649861167,23.10474057977575,25.23675158800323,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -MWI,,Zomba,0.2369613381496944,52.57403044335025,45.07193687671059,29.664945890348747,17.08560558685014,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MWI,,Zomba,0.2072733171566327,46.33908483662637,44.729695868487255,30.99846999592338,11.78638697729128,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -NAM,,,0.2049531020797424,42.96104479503704,47.70673130915545,22.01244467107845,17.41232532051689,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,,,0.1577818403411764,35.131786556380966,44.91141948843436,21.27295449160242,11.19350101625458,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA01,Zambezi,0.2098147166403638,45.879151307307545,45.73203964366814,39.69656511260183,15.23795804684174,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA01,Zambezi,0.1683465493688674,38.629806953503994,43.57944360723686,38.251476450216224,9.08693055173269,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA02,Erongo,0.0508526952377703,11.82803314948295,42.9933655030323,16.63100426109001,2.6280101827085,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA02,Erongo,0.0294633535978753,7.893857388362389,37.32440573516314,12.632091259544909,0.23228227181650998,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA03,Hardap,0.1406873916053037,31.31117685891271,44.93200375036595,15.350612856504458,10.96183910899716,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA03,Hardap,0.0706456041473887,16.53214228746495,42.73227444996877,19.27690822109157,4.21100196383129,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA04,Karas,0.096341234656693,22.81611788085425,42.22507753500696,14.09767695372825,5.2863489696597705,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA04,Karas,0.0754439962920341,18.27886283736449,41.27390033137964,20.31814265723969,3.95039606123427,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA05,Kavango,0.3566087339973791,71.87856741733113,49.61266575151508,17.8642743201585,37.7305026626173,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA05,Kavango,0.305929127369112,65.88549951238718,46.4334534356219,23.66574610138747,27.93462966791581,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA06,Khomas,0.0398261891517757,9.88720330606993,40.28054032966596,10.39621789726495,2.0436521266625802,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA06,Khomas,0.037218512739492,9.68903640745139,38.41301773917267,10.15088931365203,1.7798771659410701,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA07,Kunene,0.3851300641607258,67.50633192474439,57.05095406310422,13.95217015982269,42.106286363513014,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA07,Kunene,0.2540874428235904,51.28894311649594,49.54039357887818,15.79331418144304,22.74904761532973,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA08,Ohangwena,0.3311382965558545,68.06964199605973,48.64698665155643,27.79497279154083,28.89497510557728,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA08,Ohangwena,0.3017274244994096,62.66399710453883,48.15004443397612,24.53353767187346,25.172649459555668,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA09,Omaheke,0.2412660368686469,50.0569033776313,48.198354390507546,17.65876303784732,19.38804085189982,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA09,Omaheke,0.2093531745976592,42.66607411985921,49.06783174133529,23.187867771578922,18.81452775166596,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA10,Omusati,0.249486001396679,55.26670161338038,45.142191249618044,35.89302693581276,17.23356072763131,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA10,Omusati,0.2023762484837396,47.4208532332195,42.676635843821145,27.624921812508408,10.33252848804155,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA11,Oshana,0.1843799368849703,40.873111292890016,45.11032584814351,33.2106811546317,11.17259146842277,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA11,Oshana,0.1092890214566431,28.13429730239598,38.84547756141603,20.55137346537028,4.61255528537011,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA12,Oshikoto,0.2476138973792094,50.80253906941876,48.740457054884416,21.8760706739602,22.79556777504028,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA12,Oshikoto,0.1784404263989348,39.74695748617196,44.89410955820069,29.31545371073676,10.99341675100836,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA13,Otjozondjupa,0.1911312009726852,38.56363887707485,49.562542990803735,18.5811782934137,18.10585908564423,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -NAM,NA13,Otjozondjupa,0.1000460747198656,21.744812897360642,46.009167883899835,19.392098307954388,7.95367990903498,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NER,,,0.668370278240736,92.9136292119194,71.93457880289044,3.6769537728508896,84.72690980577619,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,,,0.5937593171118746,89.86818949218083,66.0700210460494,5.628446019043929,75.38146672060569,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE001,Agadez,0.4880537192369808,77.86345782575324,62.680714787824066,9.081765350766439,61.07919025252203,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE001,Agadez,0.3868406370841638,65.08779456446098,59.43366796689487,14.9438976516422,48.63307906752139,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE002,Diffa,0.6464871225278903,95.95027350365241,67.37730898737682,2.62857802708329,86.64694307872018,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE002,Diffa,0.5692815725330485,92.1616330374056,61.76990942662598,3.9076596021632097,75.07120222092261,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE003,Dosso,0.704698983486058,96.69025072889916,72.88211357129457,1.91444315123506,88.90052033858848,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE003,Dosso,0.6168569591228911,93.83632258949933,65.73754619748067,4.01368608731722,78.66638940573891,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE004,Maradi,0.6931946713593267,96.13443962776049,72.10679898311434,2.31435564112543,88.59159617362545,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE004,Maradi,0.6441027757204293,94.50557055197768,68.1550063089853,3.35493048226856,82.9800741133781,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE005,Tahoua,0.7046401981079032,96.3077912306159,73.16544062573207,2.99892510392886,89.96587698838539,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE005,Tahoua,0.6258195419469166,93.8918320028538,66.65324646428192,4.3668314921254,79.58758561838852,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE006,Tillaberi,0.7384039693672391,97.30141266167574,75.88830924117458,1.92356595453382,92.67623582747754,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE006,Tillaberi,0.6091612347572178,92.5244428319694,65.83787117351199,5.67206071087444,76.39684432563774,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE007,Zinder,0.6893815835324801,95.46496584311586,72.21304459118419,3.46702573724101,88.70195936963277,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE007,Zinder,0.6244960414265843,93.56287674606905,66.74613512808881,4.09859850741583,79.74562759855127,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE008,Niamey,0.2993095446327241,55.323637235130164,54.10156663428204,15.422631705469941,31.74368087824073,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NER,NE008,Niamey,0.2096354691413051,41.855551781134395,50.085463031882526,23.72454843196331,20.44540283630562,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NGA,,,0.2303776054853801,42.34179559282299,54.40903066577306,16.37495908138465,25.1689611198982,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,,,0.2148744514572649,40.82235788045099,52.63646261848191,16.61054258754506,21.61471094011656,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,,,0.2082622411164925,38.17876555269031,54.549233874277824,15.61044324104805,22.22308613302408,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,,,0.1748173018373482,33.044066383865776,52.9042944674343,16.62318786925082,18.09915885668411,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,,FCT,0.0850076540931535,18.28967758260389,46.47848695485371,10.935737559490411,6.88853043210223,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,,FCT,0.0891810215415934,18.58773042858689,47.97843495967532,14.31534307670839,8.21470274554069,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,,FCT,0.0859113175681598,18.50720939939329,46.42046011052112,13.73171813353529,6.7642258645469,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,,FCT,0.0413650726953041,10.17746323525101,40.64379476413198,12.717159898409088,2.01410042742376,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG001,Abia,0.067478164335695,15.234834352945539,44.29202364294074,16.33759358553645,4.90881758895115,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG001,Abia,0.034556660475224,8.03056474514759,43.03142004565075,10.57079563974223,1.9761688672893198,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG001,Abia,0.0284647780423207,7.11197121385846,40.02375317106726,5.73157146899239,0.9715250600407,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG001,Abia,0.0419360438418849,9.39708733818692,44.62664050324354,10.52094124263116,3.3537130763620104,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG002,Adamawa,0.1885184752575552,37.23241367129961,50.63289125487811,30.7248170155167,18.532498966011772,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG002,Adamawa,0.2458929242578219,48.43184380748835,50.77091948743914,20.03540838328107,27.025596898304897,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG002,Adamawa,0.2727887128632173,51.7934768421487,52.668546213763,24.42436283991319,27.824466058065788,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG002,Adamawa,0.1819775181311749,39.09710119492303,46.54501550483382,31.18595925709401,15.21430295513651,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG003,Akwa Ibom,0.0572255746115991,13.269615688786129,43.125269000788904,21.22868613358023,4.063854306627,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG003,Akwa Ibom,0.0515343821512272,11.61781466879199,44.35806872497284,15.668742146661948,4.07519307587004,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG003,Akwa Ibom,0.0610749060932588,13.76596687127473,44.36659383563028,16.75016282204209,5.23525229241993,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG003,Akwa Ibom,0.0445529826312234,9.8073930359465,45.427956713803354,24.32352709759142,3.6117569785913504,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG004,Anambra,0.0484354016761701,10.62953007712154,45.56683251729072,7.75099048813421,3.44611386106798,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG004,Anambra,0.0341113195560127,7.84551612577091,43.47874506810846,10.32813219649742,2.04787741942731,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG004,Anambra,0.0290718509292034,6.53825125588207,44.464260841993806,7.83862225370244,1.83723843791965,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG004,Anambra,0.0088564892819848,2.04488158577297,43.310523912987684,13.76431205688984,0.54722908125741,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG005,Bauchi,0.4762577273369619,74.50470579040166,63.923174017595755,11.818616141751379,57.75579347859852,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG005,Bauchi,0.416113950565724,72.96556346878985,57.02881342699584,8.7634687892752,50.43653121072425,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG005,Bauchi,0.374994536384774,65.87102159093027,56.92860492031706,14.36491350777388,42.45886251140584,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG005,Bauchi,0.4411035554341986,75.35625245725375,58.535760610497064,12.443091148040649,50.75127387500363,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG006,Bayelsa,0.065541868896971,15.18145836269029,43.17231410260668,24.87860259756391,5.04046706709682,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG006,Bayelsa,0.0849689882339247,18.5136301845991,45.895368648233905,24.74941897119231,7.65498714296288,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG006,Bayelsa,0.0471540492070321,11.36268781011074,41.49902733847307,28.02864421410995,2.90934047066717,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG006,Bayelsa,0.0643592186059503,13.965947258461911,46.08295979848791,23.54938025605756,5.98066113141163,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG007,Benue,0.2089468136632198,44.44435131382521,47.01313158737073,35.354429488392405,17.818407127320903,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG007,Benue,0.1289367076542381,28.14412353445715,45.81301226040296,34.86130969402235,9.89705461824396,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG007,Benue,0.1071693462458455,24.13749212350718,44.39953649595382,32.231030923900775,7.61474683224159,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG007,Benue,0.1156325506132808,27.0206032753694,42.79421500506818,35.02949649938966,7.6549301278288295,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG008,Borno,0.3514318417562368,66.49534813050276,52.850590550563304,11.34772461334807,43.7696298771957,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG008,Borno,0.1786356774616961,37.22635221738003,47.986350211959724,21.42014867982581,15.14483465778022,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG008,Borno,0.2521269327777745,48.525886324596264,51.95720302587843,18.06123183602303,28.211040054433873,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG008,Borno,0.2922355747901068,53.88606351637769,54.23212528806953,23.38559183978654,31.14623180347133,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG009,Cross River,0.088846235080976,20.15800767984768,44.074908836252256,32.40038063294136,6.27439491013384,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG009,Cross River,0.0765396950925203,17.91854487939859,42.715351948315785,35.83550810597067,5.40371688414385,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG009,Cross River,0.0644316800472185,14.88559177014212,43.28459428563474,32.07853347692803,5.19638502710154,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG009,Cross River,0.0775015585698433,19.08596377039145,40.606573240002405,34.7097288946176,3.9392084377901697,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG010,Delta,0.0691723703562537,15.48697955712098,44.66485546850739,15.769099486741231,5.4670274832423,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG010,Delta,0.0398481942487485,9.27274150618442,42.97347685382135,15.585368717707802,2.60979333020197,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG010,Delta,0.0376755121054671,9.12077577275309,41.30735481735761,13.280969547222199,2.14879096320803,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG010,Delta,0.0507448686549996,11.78205755067018,43.06961533396443,17.04352420590294,3.08815788076267,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG011,Ebonyi,0.1678596120790902,34.63427001006336,48.46633465360087,33.57345314520714,17.265347866438958,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG011,Ebonyi,0.1141737605134621,26.41375244476558,43.22511947221946,40.7613628919826,6.714329830340519,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG011,Ebonyi,0.1026275227446155,21.35593486625093,48.05573878519322,41.09306564911995,10.26172251885331,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG011,Ebonyi,0.0340547992121901,8.0226844919899,42.44813471873599,12.76928544993,1.05605035835148,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG012,Edo,0.0457377825492292,10.99715744548177,41.59054989980232,13.896989333946848,2.2333244545568998,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG012,Edo,0.0127714594703869,3.35343826864851,38.084671454333844,9.64062766363342,0.32795668374098,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG012,Edo,0.0495593415990111,10.74068989989847,46.14167438115832,12.607162985032641,4.83141314103091,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG012,Edo,0.0357711353981112,8.31599029908214,43.01488350949536,6.33087867864006,1.69501893805926,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG013,Ekiti,0.0271994491194455,6.481520108574319,41.9646142630395,7.00656047029016,1.0898619296810699,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG013,Ekiti,0.0394997885972735,9.34074869092912,42.287604456837705,16.41135720558084,2.229485803493,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG013,Ekiti,0.0646343922869633,15.16956029970894,42.60795369804055,26.32710199194186,4.62684232525743,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG013,Ekiti,0.0531501026929354,12.47442741913096,42.60724833864812,21.63806561534796,3.53368878007069,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG014,Enugu,0.0842583218227861,18.4728341377271,45.61201664811423,29.391671033435568,5.8646213106515,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG014,Enugu,0.0304545898311149,7.60933885631272,40.022649018777415,17.41980024028515,1.4049527498341101,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG014,Enugu,0.0537653841407044,11.70800038036676,45.921918682940984,21.165056867925188,5.38922376263574,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG014,Enugu,0.0300122315162296,6.88190410911255,43.61035992420964,12.58759975885896,2.3834043043558,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG016,Gombe,0.3635153007278349,65.28870854550847,55.67812701861799,15.426844478383101,41.8054622983996,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG016,Gombe,0.374617568438086,67.516569758348,55.485278618107955,14.40351104576059,41.9658459626999,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG016,Gombe,0.4175973104853599,71.81280460335519,58.15081485702748,14.39549732444486,49.21358418529181,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG016,Gombe,0.3344877201323361,61.34116982666913,54.5290742053817,18.20308623319978,40.17147486236476,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG017,Imo,0.0587733118993587,13.011969125260089,45.16865305594854,14.21650009945428,4.62093084944235,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG017,Imo,0.0360399615660478,8.498637950893,42.40675008665457,7.909026089182141,1.6527414666252098,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG017,Imo,0.0496069137469067,11.4690810326817,43.25273629643862,6.91928348598308,3.17910427781772,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG017,Imo,0.0182895748162878,4.61229363952812,39.65396881834033,7.722742677131509,0.28654328064157003,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG018,Jigawa,0.4382221551019654,76.57958468206193,57.224409994040485,11.35873214308228,50.79729288570587,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG018,Jigawa,0.4200177488146961,73.60009536676498,57.06755497009319,11.011285067154141,46.04347135023423,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG018,Jigawa,0.3837040445853553,67.06439322411606,57.21427215528392,16.620200596528388,42.27868496304245,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG018,Jigawa,0.4376723142602218,74.7773602349922,58.53005680928168,14.42647885797813,51.98145530491267,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG019,Kaduna,0.2161382288878578,41.58573133601365,51.97413197845577,20.07304805773701,24.61161170576684,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG019,Kaduna,0.1879919417047578,39.06657722515324,48.120914361475755,16.25096689915081,15.61257273809823,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG019,Kaduna,0.2569044978833029,46.7991966639647,54.89506576960519,11.83069556337056,27.727957694579768,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG019,Kaduna,0.1670685176033896,34.0943063937735,49.00188191946924,16.43374473265749,14.698922907560592,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG020,Kano,0.2829717491856423,53.829932928713895,52.56773207582801,16.5847477627444,28.956956840353097,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG020,Kano,0.2880325573674885,53.43009055545562,53.908304173382724,14.911756196170458,29.36127002107539,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG020,Kano,0.2818064866167494,51.38165071034892,54.84574409751106,15.87325281231649,29.913517574952447,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG020,Kano,0.2496833995051876,45.06122910255067,55.409806718089406,14.50677811981975,26.730779054609833,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG021,Katsina,0.4163265903365826,70.57938349491862,58.986997295967626,13.30303207157512,49.88997024677311,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG021,Katsina,0.3470728470324542,63.83125397061432,54.37349659341402,14.77361304479127,36.80539598005008,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG021,Katsina,0.3100235980229107,56.97943769145617,54.40973280601493,19.74832382319555,30.817235975114432,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG021,Katsina,0.3330857729266604,61.131868158414434,54.48643775510288,17.49864384586595,35.19475188558594,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG022,Kebbi,0.44896330799475,78.23843816257592,57.38398139566956,8.34328934599272,52.20365714968074,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG022,Kebbi,0.3577287440341765,65.03563905815196,55.005032504456764,16.066256676446,37.43511622658491,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG022,Kebbi,0.5087434231172502,80.88482216624764,62.897266692581425,8.857794500548161,59.93429594046603,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG022,Kebbi,0.4372595274071139,73.78634016189343,59.26022708915086,9.80974306504662,52.74925627162877,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG023,Kogi,0.0755193786544543,17.21806643028734,43.860545526536235,22.67025428019566,4.93566208447446,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG023,Kogi,0.0799694166142804,17.991009098301237,44.44965603504214,28.530770056921313,5.21349555824899,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG023,Kogi,0.122745138935795,25.0101433558554,49.07814289159514,19.83266427000666,12.059933513786799,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG023,Kogi,0.0637921408655954,14.02189733841409,45.4946569112525,23.31449779703803,5.6812371501296,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG024,Kwara,0.0666307410789006,15.41459538407638,43.22574768827965,11.526594629272351,4.7217366316494,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG024,Kwara,0.1103924098996575,23.58772668020513,46.800783897627156,15.316635813114651,9.509075409483609,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG024,Kwara,0.1817384802466164,33.709450389154014,53.91321369780937,7.10291851280485,20.184144053570392,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG024,Kwara,0.0962442724788407,20.156012763103483,47.74965843195949,14.797617549068601,8.13682382884044,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG025,Lagos,0.0233810455411747,5.65290398087598,41.36112274376822,3.6029814501301,1.0123873779518,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG025,Lagos,0.0154944448201723,3.93162705127391,39.40975229365133,2.21558248610864,0.31972438221129,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG025,Lagos,0.017357390509274,4.49522850952569,38.612921395414176,2.1591819403423598,0.15669140258432,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG025,Lagos,0.0043607469750755,1.10541108452963,39.449097590070444,1.52528664861233,0.20731008338546,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG026,Nasarawa,0.1723643918079213,37.47630136555823,45.99290365572977,31.189246353799337,12.79913243434963,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG026,Nasarawa,0.1951403115576577,38.93675812710576,50.11724677248133,29.52288284727034,18.522544574136372,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG026,Nasarawa,0.1127376008352955,23.662820534826228,47.64334863182164,20.30274394110467,10.60988171914297,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG026,Nasarawa,0.1887620936353704,40.58299185654535,46.51261156462181,23.99015144174685,15.70763302207383,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG027,Niger,0.2576537878675654,49.53928202717623,52.00999637544642,17.82011533345499,28.45132240305762,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG027,Niger,0.2859938575397391,53.18260394066326,53.77582824993438,13.114956518672342,28.92875412323169,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG027,Niger,0.3136883265034794,58.33043354945815,53.777815012724794,10.83215880000119,35.06709352188521,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG027,Niger,0.2190993822710941,44.5601186448222,49.169389340607836,17.75550544483729,22.794190873732433,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG028,Ogun,0.0763920268719724,17.50150646430909,43.648829332354374,16.83561630459442,5.18851751190404,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG028,Ogun,0.0480211640211825,10.84242424242416,44.29006184178406,11.416450216450121,3.2536796536796198,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG028,Ogun,0.0289067612804055,7.3336676032582995,39.416514143022255,9.840803586058609,0.8946815132773501,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG028,Ogun,0.0918175508812875,19.948224848233963,46.02793059524604,23.52657545465031,6.93807649993992,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG029,Ondo,0.0911563774817427,20.30331502270312,44.89728764973203,19.28934300904696,7.53454882115822,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG029,Ondo,0.0660292745111731,14.933825035853149,44.21457620713379,20.21061257938931,4.70559311616465,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG029,Ondo,0.0503056742035855,11.472807977210971,43.84774355459473,27.96696962699224,3.85161964142512,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG029,Ondo,0.0636784891123096,14.4482278633186,44.07356370256147,32.40077217875151,4.21196779348555,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG030,Osun,0.0275791061024038,6.518318157307481,42.31015644961385,10.34909357514057,1.96659701122684,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG030,Osun,0.0447746896234746,10.956419557553708,40.8661692702389,13.364072957645659,2.06023603944208,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG030,Osun,0.0542068685578479,13.261999339534189,40.87382842514286,17.25803597257159,2.86854542377784,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG030,Osun,0.0314646938447099,7.52009366797568,41.8408270347779,13.00352395167336,1.64880739605874,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG031,Oyo,0.1125603355955503,22.41416743991287,50.218387944722096,9.284236683381609,11.3863283554141,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG031,Oyo,0.0981348823344033,19.67892467215034,49.86801055917651,11.91325830359565,9.025705506804629,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG031,Oyo,0.0533167244812418,11.58094661460963,46.03831297692151,9.988774116234431,3.85543567787918,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG031,Oyo,0.0808740301160175,17.37582239019378,46.54400137150317,11.01005614751823,6.3095947284848,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG032,Plateau,0.2250790485059228,46.47316097005808,48.43205063045692,25.92897498492149,22.51988589917108,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG032,Plateau,0.180499037217988,36.554443025784174,49.378139092605124,28.720441427921926,16.251521328465422,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG032,Plateau,0.1570735214017581,31.186266809424428,50.366246900155055,32.31169870529199,14.73899018797676,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG032,Plateau,0.1944775462750893,42.46685499249921,45.7951374806162,30.435840559032577,16.263243405464458,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG033,Rivers,0.0630384427880066,14.792669512493159,42.61464959706395,17.225515389254518,4.74462643456922,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG033,Rivers,0.0280351115036821,6.56697409773427,42.69106453968607,12.301008565618279,2.13216112400631,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG033,Rivers,0.0346852336546694,8.240528048706249,42.09103281932869,13.128839161860158,1.6103410529644602,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG033,Rivers,0.0351212136932594,8.38984604317628,41.86157113314912,10.66610210461441,1.37550079656738,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG034,Sokoto,0.4492999173173139,76.23569004852827,58.93563985992771,9.99647277892668,51.95841786991807,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG034,Sokoto,0.3654863699841656,70.60218951214922,51.767002200586546,14.63260104023916,35.16774963532656,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG034,Sokoto,0.4777152089274671,80.28683226134548,59.50106580023401,8.38427293644183,59.082373077981366,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG034,Sokoto,0.4371937098028021,70.73904706559938,61.8037318763106,11.954812527326709,51.40196455043501,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG035,Taraba,0.3429816754745336,63.97439204267601,53.61233839404642,21.94151411697334,39.417989009748936,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG035,Taraba,0.2645574414394995,54.1423838734597,48.86327910086428,25.18814510312059,26.03966526448823,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG035,Taraba,0.2638793407474757,51.42437785115329,51.31405605163929,28.69892617609392,25.14017162875481,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG035,Taraba,0.2701975664246393,56.703960730231294,47.65056319612352,26.02284003950001,25.42818142864632,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG036,Yobe,0.5421557858138358,85.41306368730162,63.474574310866025,4.10832893345574,68.48425972798391,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG036,Yobe,0.3633949320588852,65.51420221024676,55.46811527868202,16.045757603433742,39.419581696957415,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG036,Yobe,0.4544563802481472,77.23973445615803,58.83712359292234,10.53730287130896,53.97296660285535,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG036,Yobe,0.3427848493195099,63.023408340641396,54.39008431069905,17.58022658458328,43.55713641531336,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG037,Zamfara,0.5083400440877304,80.5875398674464,63.07923593695355,10.22519016171839,60.19625442955972,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NGA,NG037,Zamfara,0.3926337628407082,68.60743790001602,57.22903738409633,14.23612090111868,42.30622832491965,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -NGA,NG037,Zamfara,0.4070623391154788,69.67206653495998,58.42547226745788,11.36455493230746,47.70975101108293,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -NGA,NG037,Zamfara,0.3912671480139257,71.86953392170878,54.441308669143915,10.666856777403801,44.73599188473022,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NIC,,,0.2207877817993679,41.74393069478588,52.89098992945237,13.57398979831211,24.06800957839074,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,,,0.0744948916699346,16.46019980455167,45.25758651443272,13.360173416816101,5.60794346481018,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI05,Nueva Segovia,0.2936708353376384,54.79797979797956,53.59154414456467,17.82106782106739,32.53968253968219,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI05,Nueva Segovia,0.1229148557353031,26.688608994155473,46.05517498578524,15.43369808235912,9.64104477806297,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI10,Jinotega,0.4797342192693389,79.56810631229251,60.29227557414227,7.54152823920294,60.3986710963458,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI10,Jinotega,0.2102411252777842,43.76236809063453,48.0415330455523,19.80074883523421,19.542805433193518,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI20,Madriz,0.3630767460593119,66.62064204348916,54.499136442170595,13.703831549878759,42.837418018637266,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI20,Madriz,0.1136177471419333,26.03423936102103,43.6416618770295,21.852775118451103,6.731948277066251,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI25,Esteli,0.1920468290998104,40.7076205287718,47.17711981324809,19.32348367029526,19.634525660964,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI25,Esteli,0.0409135032240925,10.29929803731953,39.724555086999466,12.61070490529164,1.21071561383944,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI30,Chinandega,0.2313464654217882,47.198772064466574,49.015356820258624,15.73292402148879,22.25633154259393,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI30,Chinandega,0.0381642742701866,9.71455606044267,39.285659615049404,15.09182520973074,1.4183156915611599,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI35,Leon,0.155368000726093,34.22270623468434,45.39909838241523,17.23386877212014,13.912333242580498,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI35,Leon,0.0386674361113172,9.03261969577103,42.80866173234421,8.802023555272049,2.10619385043042,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI35,Raan,0.4139944997308622,70.93646338351628,58.361310951267875,11.09977034957919,48.78795611125299,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI35,Raan,0.1722325714324586,35.4551143132267,48.57763816832666,21.93314383714822,15.222056490640279,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI40,Matagalpa,0.3290588015282966,59.22096657850086,55.56457797629999,14.47463332531806,36.59533541716555,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI40,Matagalpa,0.1025394145611098,22.85695333440523,44.86136584387352,17.04614209622377,7.409216072655981,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI50,Boaco,0.3384782403475833,61.03086944208814,55.460170146971855,13.282356273010839,43.52874539790678,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI50,Boaco,0.1250637765638164,28.08336420963916,44.533046550345354,15.06685410329555,10.291907143090311,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI55,Managua,0.0437854902958074,10.583524027459951,41.37137137138994,11.93745232646833,2.78413424866514,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI55,Managua,0.0164642312528919,3.7635581975093904,43.74645053658915,6.8440684311757805,1.26795864697438,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI60,Masaya,0.1226671191042287,28.46963013233761,43.087008343285596,13.53919239904954,9.1618595181539,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI60,Masaya,0.0192459594261556,4.827541411993621,39.86700016356292,8.11415713526373,0.9492337978032801,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI65,Chontales,0.2558087578195972,48.45844504021301,52.789303826673695,12.39946380696977,29.59115281501145,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI65,Chontales,0.0792322348629896,18.52762334510882,42.76438126312967,17.186138388119858,4.91536667373975,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI70,Granada,0.1410331727568865,30.27846316531334,46.57870909328468,15.509340853012809,11.984490659146338,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI70,Granada,0.0339727933860332,8.19551047344099,41.45293145085732,8.74270581866624,2.16127093259193,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI75,Carazo,0.1485116523285145,31.29770992366318,47.45128403667313,15.77608142493609,12.17739003998523,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI75,Carazo,0.0207879714661313,5.50595034324523,37.75546485201093,8.27024471647458,0.09072540492707,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI80,Raas,0.3970579760260219,67.27178423236518,59.02295896516346,10.37344398340255,49.610995850622444,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI80,Raas,0.1503366723748428,32.05923193262989,46.89341051300424,22.44807931520435,12.07143942482291,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI80,Rivas,0.1905856938783704,40.60834117278365,46.93264693267103,19.12825337096352,16.4941988084047,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI80,Rivas,0.0296245500799907,7.773792203716081,38.10823508483977,10.74670294371727,1.01675882481892,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI85,Rio San Juan,0.3825635318124632,70.31719532554229,54.40540255357704,10.01669449081765,46.97829716193608,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00 -NIC,NI85,Rio San Juan,0.1313314483437233,28.93745893240862,45.38458219516926,23.88687823470242,9.70979955830268,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NPL,,,0.2997285476359781,58.26514397228655,51.44217060178244,17.919618005962732,31.217465511492946,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -NPL,,,0.1855287758514181,39.15946619752882,47.37775916443057,16.11831668848551,16.84335024390115,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -NPL,,,0.1327168692028437,30.052358821403402,44.16188093306082,15.762247834591001,10.50153382290212,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -NPL,,,0.1113863929325496,25.792919958192,43.18487131860098,17.80484874650088,8.17658619048185,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -NPL,,,0.0744342220008884,17.5129056244363,42.502497071090275,17.84790103866336,4.8630421331985705,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -NPL,,,0.0677731399868784,16.38570692633651,41.3611327796591,15.40814322449194,3.64315536137546,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PAK,,,0.2325790799603095,44.47590589995866,52.29327548346255,14.748867845931429,25.5131180017712,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -PAK,,,0.1982374079557654,38.332130605060335,51.715729031142224,12.79927542616847,21.46765117395269,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,,Islamabad (ICT),0.0383109604929975,8.21537876923367,46.63322479600188,8.32944818516504,3.90179076649817,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -PAK,,Islamabad (ICT),0.0463819325170828,10.63379201848673,43.61749076571048,7.5424446744023,2.66605362032209,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK2,Balochistan,0.4162370299400607,74.09787196918694,56.17395194738517,12.829829807100198,47.44837016620066,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -PAK,PK2,Balochistan,0.353590009658364,65.31917148915383,54.132653797832816,14.55607034413158,40.99457198368166,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK5,Khyber Pakhtunkhwa,0.2416173272560107,48.359919347803135,49.96230980418008,20.46496369406601,24.86359568210542,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -PAK,PK5,Khyber Pakhtunkhwa,0.2579402862315333,50.69814461454808,50.87765798780674,16.65193663508703,26.46994693980011,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK6,Punjab,0.1864978998586237,37.17391069422942,50.169028863453256,16.168977741991313,19.44938642837472,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -PAK,PK6,Punjab,0.1234140357623256,25.17048117775212,49.03125804023555,13.34496630455281,12.21738862818841,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK7,Sindh,0.2987466940884708,53.38432513839867,55.96150055544776,8.6789750094448,35.75776266080002,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00 -PAK,PK7,Sindh,0.273998990859406,50.5372953869604,54.21718530075936,8.54103559686791,32.13204006097778,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PER,,,0.052407888145269,12.58961051136391,41.62788681823276,12.46587410119341,2.85165510357139,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,,,0.0287531610278086,7.25882802401441,39.61129941732247,9.476910025942301,1.07246583321931,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,,,0.0285339396152283,7.1815003255156,39.73256049832413,10.344915016118419,1.19181326780379,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,,,0.0249061064689218,6.379005730245329,39.0438690951983,10.28359335007352,0.91851165900931,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,,,0.0244744417011148,6.29102201036402,38.90376104358696,10.00552823152868,0.86685736128631,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE01,Amazonas,0.1228951138066099,28.82367288534771,42.63686806863624,27.35935907959859,7.73315960230135,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE01,Amazonas,0.0876049804470266,22.02905611872603,39.76792286282165,20.64835377697022,3.71260481749378,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE01,Amazonas,0.0773470803180314,19.23082996191209,40.2203547487146,21.614559440725788,3.73469942441695,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE01,Amazonas,0.0678196869454905,16.82530332223478,40.30815114986146,21.72925031105462,3.27410198765721,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE01,Amazonas,0.0677809116014197,16.527309538831968,41.01146132839354,19.977352887194368,3.06306090073531,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE02,Ancash,0.0537575871473929,13.71203273247854,39.20468117032849,13.885372336984059,1.5529641722243401,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE02,Ancash,0.0441673507377966,11.577440115479309,38.14949617294394,11.368968735712311,1.1464163952035,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE02,Ancash,0.0410247005077073,10.62899578751295,38.59696751023603,15.11178680833995,1.54704419804737,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE02,Ancash,0.024217242484196,6.45153426762153,37.53718337316397,11.419973233662189,0.50848987869961,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE02,Ancash,0.025438608262603,6.892129462835769,36.909649477385656,12.11906617748258,0.60755019719332,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE03,Apurimac,0.1029686317451471,25.66241125670765,40.12430114813672,19.35091782429098,4.22794897481698,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE03,Apurimac,0.056810514540228,15.27186490442861,37.19946116322297,15.792622205187378,1.37422091803768,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE03,Apurimac,0.055115614839099,15.0173108877893,36.70138765250842,15.060761931793278,0.64072898623941,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE03,Apurimac,0.0597471717501096,16.59216920490788,36.00925895357713,14.636000615198242,0.74845644479961,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE03,Apurimac,0.0486601172555319,13.22957112986761,36.78132630140579,15.70197865657745,1.24938947172853,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE04,Arequipa,0.0112970414767422,2.94848261173116,38.31476377644071,6.46982861222656,0.07697501091202,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE04,Arequipa,0.0041661079984937,1.13660356955762,36.65401121443947,3.51500811046414,0.025952596483200002,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE04,Arequipa,0.0048051350857677,1.40032154846372,34.31451219928278,5.2060088606221,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE04,Arequipa,0.0036107615032586,0.92311934745474,39.1147852465049,9.847966056667081,0.1319508200974,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE04,Arequipa,0.0041114926154219,1.13726188620525,36.15255786985793,6.161669968092269,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE05,Ayacucho,0.0877836658014854,22.44635571109772,39.10820399147655,17.76561800371715,2.8870629148308398,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE05,Ayacucho,0.0458184400277637,12.28372180566948,37.30012837527503,15.45905173176976,1.17845911768533,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE05,Ayacucho,0.0441832607225966,11.82393573234441,37.36764282448958,16.26456947391739,0.65585715823253,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE05,Ayacucho,0.0390574005817648,10.47942582869866,37.2705539599348,16.743045894163338,1.02102480195378,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE05,Ayacucho,0.0383175902355536,10.299926226772529,37.20181037409268,16.02370327140055,1.16660542466267,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE06,Cajamarca,0.1202543455130737,28.31920808536024,42.46388004586889,22.19484901250254,6.92528189727374,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE06,Cajamarca,0.08198693896181,20.970940979782522,39.095498404602466,16.624340042885567,2.46939383589957,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE06,Cajamarca,0.0820110565735304,20.65076504867083,39.713326058498225,18.59581240462965,3.09758196596411,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE06,Cajamarca,0.0648783705805905,17.101999775181557,37.93613111534599,19.20268965508414,1.74689657416143,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE06,Cajamarca,0.0565379475470071,14.959397106614311,37.79426880914123,19.21121442745541,1.0999669809027701,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE07,Callao,0.0026562323920039,0.59765228820067,44.444444444460004,2.17561781734753,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE07,Callao,0.0021410123503918,0.58383721547462,36.67139219022325,4.7369251125775005,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE07,Callao,0.0007212660738848,0.19875120307880997,36.289897254045925,5.85529869218941,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE07,Callao,0.0025401944714707,0.6039315946763599,42.060963424705974,4.3510585232361505,0,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE07,Callao,0.0017465475209879,0.49801257832506995,35.07034956550491,3.4569378200610497,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE08,Cusco,0.0718877367147176,18.15351972929512,39.5998890500057,15.6661161559286,3.35397204180166,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE08,Cusco,0.0334019663850452,8.76689347592136,38.10011662259283,15.03669118112543,0.53170761125759,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE08,Cusco,0.0356542194673271,9.27571812598768,38.438230855069946,14.974363630317388,1.07002335336498,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE08,Cusco,0.0238737890953784,6.61905825080225,36.06825652650025,15.39715573523203,0.21738442300044,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE08,Cusco,0.0296856112686303,7.93012586991329,37.43397236764772,14.727002880149309,0.54935935521454,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE09,Huancavelica,0.1303424475100762,32.61539169292346,39.96347759280676,21.11242661420166,5.72954556619104,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE09,Huancavelica,0.0816661720614621,21.08621485435885,38.72964997536315,19.250033399593917,2.35633104300284,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE09,Huancavelica,0.0839379912389017,21.93209102455219,38.27176859011578,20.05185042870284,2.59270254350754,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE09,Huancavelica,0.0682265298996526,17.75447387615831,38.42779593219651,20.28281946772181,1.886979361623,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE09,Huancavelica,0.0780617694059548,20.985849904432317,37.19733523371277,19.43204313328624,1.4272259663365099,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE10,Huanuco,0.1229661968653625,28.699543167793077,42.8460467633354,19.54129740782401,9.14989947652003,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE10,Huanuco,0.0873895345115718,21.59838731161348,40.461138718714565,18.00660314679445,3.8168045179149996,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE10,Huanuco,0.0702096623765189,17.090536024764923,41.0810183336451,17.50761431253347,3.3832440732392404,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE10,Huanuco,0.0680220010015236,17.55034603656571,38.75821072690048,18.39657882681638,2.4505225445010903,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE10,Huanuco,0.0510573827665663,12.80947056749649,39.85908902130761,20.046455287270902,1.97186696272661,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE11,Ica,0.0121883330884852,3.18394837889395,38.280561234221935,7.60204963735613,0.40755818927481,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE11,Ica,0.0055153370299876,1.58919037016697,34.705326268797435,6.6886622865154,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE11,Ica,0.0067989738993862,1.85094398835319,36.73246701233402,7.78877905085017,0.18056170964520002,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE11,Ica,0.0054639960295345,1.4935322411497,36.5843861885992,6.957623132918809,0.1706724931552,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE11,Ica,0.0046703520281822,1.2762722531614499,36.59369712546272,6.529303655346159,0.03718519391974,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE12,Junin,0.048132618404606,11.84371356298999,40.639802836007384,13.99132689436359,1.80091499741356,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE12,Junin,0.0334520733983908,8.08304315898468,41.3854939784743,12.71561672002177,1.30673233130549,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE12,Junin,0.036567448256723,9.27362705699769,39.43165714123691,15.42923829811512,1.34678550550432,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE12,Junin,0.0272470197913043,7.394670070956829,36.8468363427318,13.231574791362291,0.37199827602864,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE12,Junin,0.0346815256647208,9.203236236082871,37.684054581524116,11.81203958891903,0.37644777060841,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE13,La Libertad,0.0623721956310767,14.244788686811042,43.785974648276735,14.912788155580358,4.38796921628245,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE13,La Libertad,0.0338067154517533,8.45370436171681,39.99041604157504,11.843520889224909,1.61125492802244,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE13,La Libertad,0.0351254399557092,8.70974761583998,40.32888380350804,12.39331963490541,1.71352385141246,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE13,La Libertad,0.0300430162062233,7.844255472016879,38.29938521685957,11.58695889209891,1.01301670846908,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE13,La Libertad,0.0339776136625833,8.72177205234195,38.9572365095918,10.35065979271806,1.4459820594625301,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE14,Lambayeque,0.0416265238506927,10.16146110661001,40.96509686349606,11.264845858202161,1.75013735717124,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE14,Lambayeque,0.0201484814081294,4.95227171855203,40.68533100203246,10.09173701897313,0.62866343182406,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE14,Lambayeque,0.0161476480846804,3.87011367210253,41.72396330650369,10.07545977868685,1.07989964912381,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE14,Lambayeque,0.0181689130850849,4.8532194802923705,37.436825511114854,8.807566440818091,0.45321065711092,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE14,Lambayeque,0.020954538007311,5.28509986712329,39.64832932989908,10.764150707604179,1.1228167032576701,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE15,Lima,0.0048407308891649,1.29193504054417,37.46884121299096,3.84802787476451,0.11748913772047999,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE15,Lima,0.0020741705249205,0.5697966710528299,36.40194178544494,3.02571994038066,0.039586148676290005,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE15,Lima,0.0030779123983568,0.8650127685072599,35.58227705318549,3.97462950558402,0.00444434627982,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE15,Lima,0.0021262677723907,0.57452328503634,37.00925319773944,4.1554462588625505,0.06409022144377,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE15,Lima,0.0025639701783797,0.69302694425379,36.996688218816494,4.01014398398378,0.03033716286125,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE16,Loreto,0.1839752306977106,40.090069593774494,45.89047426504836,20.90577025169396,17.52400416975633,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE16,Loreto,0.1157822828192667,27.42854885387387,42.21232535344802,19.86695125367127,7.73691522723131,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE16,Loreto,0.1247340773381459,28.38245156554234,43.94760510736822,17.1446123150209,9.840688490133411,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE16,Loreto,0.1015256139705279,23.33250416548437,43.51252366675415,18.88040172931321,7.40823201146919,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE16,Loreto,0.1016348728843546,24.01320884997796,42.3245695813985,18.58642772350648,7.33652041528961,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE17,Madre de Dios,0.0339096435367122,8.61737008908441,39.35033912453799,13.814515891572752,1.21974350645866,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE17,Madre de Dios,0.0265877713051432,6.56644132057002,40.49038133007347,15.01389160524338,0.8067414123502601,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE17,Madre de Dios,0.0299909039047109,6.97297002449292,43.010229212754744,15.82345150689853,1.54210060769218,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE17,Madre de Dios,0.0116124864178041,3.0377559664984,38.22718660047521,11.21060360878077,0.16387540363864,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE17,Madre de Dios,0.0183082172007248,4.81549631701619,38.019377433703525,11.48959229386768,0.13983026490729,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE18,Moquegua,0.0171542302220018,4.3646496443372,39.30265111715914,6.30091897755662,0.64500133610843,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE18,Moquegua,0.0059150258416297,1.6398246245429502,36.071088048689134,3.6948078555283703,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE18,Moquegua,0.0063246487842168,1.7580171878009798,35.97603497908931,6.4178876679967205,0.07590853998892,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE18,Moquegua,0.0061608035831126,1.71525736774427,35.917662847381386,5.16231825267118,0.05422452905439001,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE18,Moquegua,0.0034493388984208,0.98216879943414,35.11961386279125,3.10409410936534,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE19,Pasco,0.0743103352122152,17.808007845525232,41.72860651051865,20.288226512492642,4.52135600479021,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE19,Pasco,0.046169827770314,11.549408195191189,39.97592516431939,15.74482980697586,1.8744541810661899,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE19,Pasco,0.0496822653463222,12.95494656048366,38.35003495720118,17.89181163690895,1.07017767053141,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE19,Pasco,0.0407983288706862,10.742013884589351,37.98014907541316,17.076357180827,1.33762502517867,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE19,Pasco,0.0398915154761332,9.56339621582503,41.712708096442405,12.542613321389059,2.99703466934655,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE20,Piura,0.0616390119596322,14.594345254558611,42.23485938184106,15.055154270461271,3.1451167773509003,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE20,Piura,0.0337894216049651,8.736421522634942,38.6765010335423,12.63181778725466,0.70165356362607,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE20,Piura,0.0312693438045646,8.181216262004309,38.22089870645216,12.78777029471836,1.11975498601062,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE20,Piura,0.033053959391097,8.111123618027511,40.75139394698954,11.96852095832697,1.58773430781199,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE20,Piura,0.0273084998802592,7.23990663300805,37.71940891579281,12.02680142833815,0.67696608093024,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE21,Puno,0.0751439005488147,18.78747915866211,39.996797821685945,27.597389651965088,2.21447639809346,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE21,Puno,0.0622121649404672,15.62346485756898,39.81969781199196,18.59403266711613,1.78252762553158,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE21,Puno,0.0578960008792535,15.12255195607311,38.2845442008899,20.71071349956679,0.73164914097904,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE21,Puno,0.042424929650541,11.33328873500606,37.43390876427569,15.20599642330306,0.30214852457292,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE21,Puno,0.0407909939906868,10.7756752971538,37.85469853704764,19.35466861319929,0.45214250876509005,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE22,San Martin,0.0742466455618425,18.094873377206948,41.031867984976714,18.125961107139272,2.91405713660104,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE22,San Martin,0.0409575774662433,10.78197526810449,37.98708163188339,16.30930552323849,1.35575298848376,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE22,San Martin,0.0477375330359665,12.06058062296832,39.58145509599643,17.20499065325988,2.0898502469478,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE22,San Martin,0.0389744790996412,10.00770831738331,38.94445947424629,16.214742217345528,1.7181132041817901,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE22,San Martin,0.0281971565456981,7.27499037482488,38.75902934974922,11.856600489159801,0.9543553442259999,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE23,Tacna,0.0103520005312097,2.7630104499581702,37.466382117253424,4.07368615999056,0.0933322943828,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE23,Tacna,0.0037958038512772,1.00494866648681,37.77112182801288,3.59175011250292,0.13334806266074,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE23,Tacna,0.0036673908823357,1.0491106682012001,34.95714030459504,5.5572219414199795,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE23,Tacna,0.0035874246244046,1.01959932426787,35.18465086253913,5.99819179335915,0,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE23,Tacna,0.0034965185295871,1.02481961690182,34.11838017072333,5.09346265539239,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE24,Tumbes,0.0146416938124459,4.062242455301781,36.04337745359465,9.88436960564966,0.033302741929749996,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE24,Tumbes,0.0123128262953837,3.19450897051351,38.54372114473791,9.77387694741223,0.3468066707295,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE24,Tumbes,0.0133277849866867,3.42279509758628,38.93830803978101,9.98197998120744,0.18280519774818,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE24,Tumbes,0.0087342607120528,2.40343769939848,36.34069946659641,9.133046307145321,0,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE24,Tumbes,0.0099074071776343,2.8012325438198,35.36802826131818,8.89824764210511,0.12967068202403,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE25,Ucayali,0.0809254502681387,17.94807450078893,45.088652971983976,15.701240214485049,7.721505609108211,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -PER,PE25,Ucayali,0.0498488135967248,11.36450159373547,43.86361617847218,13.07941619147362,3.4220877514001997,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -PER,PE25,Ucayali,0.0485181951132635,11.738504687430899,41.33251756095879,15.009015512124629,2.85049699756434,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -PER,PE25,Ucayali,0.0615590039182071,14.4281623909954,42.6658657214906,15.02374609452905,4.0586329504035294,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -PER,PE25,Ucayali,0.0638746276550569,14.816887689893079,43.10934184823929,14.94762929559469,4.413451639949581,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,,,0.0561867283398195,12.5727874237753,44.68915797746625,13.75539584240004,3.86423728710454,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,,,0.0371957773690441,8.369168815213381,44.44381298825045,10.63383192737202,2.54313795136052,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,,,0.0240666563576076,5.75582912474005,41.81266649171861,7.110861073099301,1.2599215577082898,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,,,0.0157881155770484,3.8866590631936004,40.62130307893679,5.24303080675662,0.68674012683289,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH01,Ilocos,0.0159686656704452,3.82470530120011,41.75136229563786,10.29965531926071,0.32155822171036996,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH01,Ilocos,0.0132355968276544,3.21006606632351,41.23154026799549,8.575339364731779,0.27708272251022,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH01,Ilocos,0.0119370652193722,2.82400216744767,42.27002853245306,3.43184163379351,0.54113930500869,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH01,Ilocos,0.0112117241220749,2.75663396715418,40.67179123403658,2.12040427476691,0.48553852171604,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH02,Cagayan Valley,0.0393989175934626,8.70315524473005,45.26969413457204,9.967935781565359,2.1319620918273703,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH02,Cagayan Valley,0.0313880235752162,7.64794815775299,41.04110400303523,10.85767441587215,1.6974632876985598,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH02,Cagayan Valley,0.0143640729008506,3.4861117285653496,41.20370779614073,6.20322192298169,0.8875879574862799,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH02,Cagayan Valley,0.0052091070747283,1.29564678289757,40.20468497655444,3.5300634843929903,0.35633915109512,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH03,Central Luzon,0.0250972441286971,6.09008776574055,41.20998759636969,9.48492184324729,1.06289190275006,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH03,Central Luzon,0.0188046648626945,4.12964668896178,45.53577165077569,5.2199719724813,1.63453886067569,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH03,Central Luzon,0.0079310382973553,2.01477499829469,39.364387110561374,4.57271961250535,0.26423876383426,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH03,Central Luzon,0.0070577973330474,1.73995441745908,40.56311626458673,1.5839511374756299,0.3723535593379,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH04,Calabarzon,0.022164603722789,5.68078732871461,39.01678137245838,7.146548896959789,1.01993404236344,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH04,Calabarzon,0.0154354053847702,3.60616457436704,42.802831280875395,4.9971396289809,0.8402884538228701,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH04,Calabarzon,0.0150366762247583,3.92170105395168,38.34222960367321,2.43267864540636,0.46884271354211,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH04,Calabarzon,0.0077038565230647,2.1489278472202002,35.84976821362433,2.28768683917595,0.07164310596987,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH05,Bicol,0.0913245402613433,20.15562190159401,45.30971096164535,18.89783648212314,6.165491588035501,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH05,Bicol,0.0484933743056374,10.87087994493372,44.608508741960065,16.142936843571277,3.49604017811129,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH05,Bicol,0.026230085685814,5.9531814525402,44.06061850277005,11.412105896669871,1.7466554197405602,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH05,Bicol,0.020128746332193,4.93599330635744,40.77952517939531,11.22296845327356,0.84736684523471,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH06,Western Visayas,0.0697738290594912,15.887489900544368,43.91746556333008,16.459641113687653,4.15000101209851,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH06,Western Visayas,0.0405463101253883,8.87746853822803,45.67327943860157,15.005650851897409,3.46836930869078,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH06,Western Visayas,0.0365695099593912,8.91934345676208,41.00022623488783,9.9383560777629,1.91570988511284,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH06,Western Visayas,0.0107212399047252,2.7500340355516397,38.985844415465756,4.36507493140582,0.36323529799533,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH07,Central Visayas,0.0627350585921335,14.247774206006088,44.0314800649268,17.84609547376858,4.16404728602258,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH07,Central Visayas,0.0378429890565931,8.799538480894439,43.00565210182075,14.44129488782372,1.9996038198764,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH07,Central Visayas,0.021549000743527,5.44475444480873,39.57754378450029,7.4339353544650795,0.26351836045793,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH07,Central Visayas,0.0201878996519616,5.01138897906449,40.28404048517936,5.91552832702266,0.72908583681645,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH08,Eastern Visayas,0.0934214485957176,21.10781864533709,44.25916773562731,20.33100001723975,6.426883603112819,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH08,Eastern Visayas,0.0339660921820647,8.186559546186519,41.4900691681731,13.77619389050399,1.8106155296602402,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH08,Eastern Visayas,0.0241248724025236,6.11729064546582,39.43718518655824,8.2634390408981,0.76090119032455,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH08,Eastern Visayas,0.0198921130107033,5.03598282330006,39.49996199087129,5.72916496760494,0.8007221073964,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH09,Zamboanga Peninsula,0.074444567283665,16.82824406932042,44.23786996254997,20.261978594249598,5.5462682620997805,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH09,Zamboanga Peninsula,0.0539800350187734,12.16079455325981,44.38857574836967,19.142856448727162,3.87261956439685,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH09,Zamboanga Peninsula,0.0489436456639766,11.81121046012077,41.43829781818665,15.341002081568991,2.10431652144033,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH09,Zamboanga Peninsula,0.0346791767508684,8.23803736095943,42.09640625716897,9.82359806429638,1.8773130415631298,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH10,Northern Mindanao,0.0765589860782596,16.740008357012933,45.73413850548441,19.51621394772114,6.51262451005122,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH10,Northern Mindanao,0.0628694988126157,14.099868594341181,44.58871257697227,15.99087299204478,4.21376612780881,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH10,Northern Mindanao,0.0329411527409409,7.65949656168829,43.00694239580679,11.76217035354399,2.0497156171718602,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH10,Northern Mindanao,0.016803831247165,4.264350105207599,39.40537440076581,6.90109074281031,0.49719149362866005,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH11,Davao,0.076222207422303,17.2649457736871,44.14853566379023,17.048169504872128,5.0661415076340806,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH11,Davao,0.0565270036716773,12.413042919000059,45.53839380121223,13.73265979569496,3.81900103101488,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH11,Davao,0.0290753561651135,7.11916881246301,40.84094215354664,9.18355987195822,1.12787227092296,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH11,Davao,0.0153407798754667,3.76703895856631,40.7237091099935,4.92685670978193,0.47180201738272,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH12,Soccsksargen,0.0890847700466256,20.1571673280321,44.19508386118198,22.29944652151161,4.84276956721294,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH12,Soccsksargen,0.0628979761265084,13.28020147942482,47.36221526755979,16.48027332498507,6.05038164059673,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH12,Soccsksargen,0.061010009543439,13.821832495380981,44.140318994480246,10.89639711234454,4.80081530234565,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH12,Soccsksargen,0.0321628033982593,7.33186464237356,43.867153810203405,8.89992689107749,2.23029522371359,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH13,National Capital,0.01164496952579,2.90488016277822,40.08760731338681,5.28395916890784,0.32821395835764,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH13,National Capital,0.0103178600408536,2.6819440946864797,38.47157016171798,2.65676152102745,0.15109544195417002,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH13,National Capital,0.0042093297881551,1.09778750047173,38.34375766117119,1.21027687336565,0.17334984617698,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH13,National Capital,0.003308638755369,0.96542182622383,34.27143105216945,1.9254072943168,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH14,Cordillera Admin,0.0338290482898416,8.243666260214221,41.03641173965059,11.69608858085915,1.22611586437784,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH14,Cordillera Admin,0.0170019641039681,3.99965660456119,42.50855957128695,4.40098408062149,0.8373290399701101,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH14,Cordillera Admin,0.0078847984296494,1.8793070497567899,41.9558817207108,4.91656624363677,0.46348259678485,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH14,Cordillera Admin,0.0040330930399634,1.06967538815154,37.70389675818215,3.10957035062613,0.04448402501564,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH16,Caraga,0.0673463680635609,15.31299004871769,43.979894095993686,22.56025754874637,3.49209268241788,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH16,Caraga,0.0475326884484121,11.13678730192183,42.68079039294354,11.625613794193761,2.2182752850376497,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH16,Caraga,0.0272974522139701,6.313294003440579,43.23805005610967,10.33046314395756,1.28812672111981,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH16,Caraga,0.0116974127404143,3.0305196261496503,38.598703138168325,6.6456297064069,0.44416165140816,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH17,Mimaropa,0.1116974373138176,22.91248744323959,48.749590192039285,22.09604085523101,10.18764908886324,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH17,Mimaropa,0.0703481874120688,15.01486968226409,46.85234630785086,16.48621204384015,5.67034813604471,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH17,Mimaropa,0.0438740468955111,9.81376793829671,44.70662763921635,10.60664367869378,2.8497046641573096,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH17,Mimaropa,0.0278175080686976,6.15634121142239,45.18513044255147,8.26112281648933,1.8420235347900198,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH19,ARMM,0.2139211356360851,43.21475691518534,49.50187179252995,22.68139237229435,21.97823245545474,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00 -PHL,PH19,ARMM,0.1932119456945643,41.80203575622129,46.22070246083866,27.810155442498104,14.854443403131459,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -PHL,PH19,ARMM,0.0998301269110625,22.54565737247907,44.27909342440492,25.414717808744808,7.0736026799856795,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -PHL,PH19,ARMM,0.0756667604375795,18.01426333862031,42.00380499343513,21.82270302763547,3.86584489494833,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PSE,,,0.0039193953105937,1.10750062306221,35.389554000942255,2.14668870291941,0.02785098066428,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -PSE,,,0.0028690302187941,0.8016827477719901,35.78760085292643,1.2217475095937,0.07072012648194,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -PSE,,,0.0018969837978716,0.54690001073813,34.68611740035163,0.89689342693793,0.00647113902878,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -PSE,PS01,West Bank,0.0040899255922358,1.14962596324822,35.57614148413893,2.34630063837466,0.04613646815395,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -PSE,PS01,West Bank,0.0024517571474832,0.6865899288856699,35.70919182374888,0.66016128329364,0.043351927954180004,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -PSE,PS01,West Bank,0.0019807177807147,0.57312407075642,34.56001731179277,0.60738125882557,0.01105545932896,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -PSE,PS02,Gaza Strip,0.0036596573309872,1.0433387003538699,35.076407400070245,1.84265589231684,0,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -PSE,PS02,Gaza Strip,0.0034451959399714,0.96060155072192,35.86498415896003,1.99717912818051,0.10850981128601,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -PSE,PS02,Gaza Strip,0.0017787865060313,0.50988262818951,34.88619552204322,1.30556327714479,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,,,0.3380051017504899,66.81189508001742,50.590557466702194,20.23947080282294,34.07605533732967,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -RWA,,,0.2817114847753838,57.516453568060456,48.97928632578649,23.653199216494368,26.24036001585943,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -RWA,,,0.2310019619235062,48.822401873815316,47.31474754571597,22.69471882517998,19.70117722347414,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW1,Kigali City,0.1443559303561109,31.83829490449337,45.34034589136801,19.85592388656685,10.60569783910888,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -RWA,RW1,Kigali City,0.1179282259116129,26.161922273986022,45.07628479153243,22.31984802052857,7.83211871932782,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -RWA,RW1,Kigali City,0.0997558752524087,22.390722687445038,44.55232492711994,14.83979532373984,7.090181635592129,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW2,South,0.3526062400763436,69.21072755483762,50.946761077892674,20.3406416138829,36.3855100349404,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -RWA,RW2,South,0.3235769602448564,64.83888869934556,49.90476652757966,21.54016154818118,32.18404034134783,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -RWA,RW2,South,0.2505468662152386,53.07032479664262,47.21035101543017,24.79815867349762,21.84214607980945,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW3,West,0.3753811361506193,72.92406172352672,51.47562097868088,19.60485238182931,39.92901348766397,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -RWA,RW3,West,0.3117770234501937,63.284599309770165,49.26586039110156,24.42385411088556,28.87296714166434,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -RWA,RW3,West,0.2637163545224805,54.23223200798234,48.627236010434636,24.10173353634731,22.92052664784859,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW4,North,0.3460112290947636,68.59640878196994,50.44159530195552,23.17248450243147,33.72159975267717,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -RWA,RW4,North,0.2580355426435126,54.30647771787209,47.51468949690213,27.826161746012467,22.2963145902362,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -RWA,RW4,North,0.2635043997581158,55.623879065131135,47.37253211872784,22.75766841499623,22.93129283068651,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW5,East,0.3593919357611775,71.31795590389117,50.392910341611284,18.88289859585676,35.72380434588505,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -RWA,RW5,East,0.3012455288751122,61.054672611567774,49.34029059358784,22.86796418462695,28.75725489737939,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -RWA,RW5,East,0.2316359173304904,49.550285049872286,46.74764576981732,23.48987361437364,19.423644177583892,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -SDN,,,0.3166278162991062,57.00116057622709,55.54760869749009,16.29718902557161,35.92054102807985,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SDN,,,0.2794395886310584,52.32804165094029,53.401499428373356,17.66052862769846,30.878277917830037,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SEN,,,0.3812532720254387,64.2419270995527,59.34648744808484,9.14204254279278,45.535377040416755,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,,,0.2819164611839063,52.36407778931079,53.837759220779134,16.41811620306704,31.795252741776693,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,,,0.2595041651770718,50.29874334782639,51.59257426821699,18.05895155465399,27.006757664149063,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN01,Dakar,0.0845450492140722,19.7632165312837,42.77899251887652,14.634264745155429,6.673488496356731,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN01,Dakar,0.0505213319243719,11.66786321437229,43.299557936315594,18.8937265803121,3.37243944931089,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN01,Dakar,0.0833137520192767,18.24627271205177,45.66069647980623,17.537972261013408,5.20287911669888,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN02,Diourbel,0.5114091402502307,85.83202182780657,59.58255780997482,5.13230186417679,60.48499901391355,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN02,Diourbel,0.4054286099028063,78.16133775664213,51.87073578053659,12.26578208979195,42.98806115372536,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN02,Diourbel,0.3588341506234125,71.08420749080953,50.48015069589206,21.03594993456206,38.41732689216578,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN03,Fatick,0.5334769302016662,86.71937924113314,61.5176140408331,6.64482881117026,67.16567855191236,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN03,Fatick,0.2820048920125896,56.40130104901291,49.99971397247138,20.238467777759762,28.959215737384454,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN03,Fatick,0.2815430455356832,55.626123830753016,50.61345751724507,19.23774370312119,31.10775328671113,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN05,Kaolack,0.5174233072570212,78.53473602494509,65.88464333701607,4.24482318086324,64.33157202782851,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN05,Kaolack,0.416404836799957,72.086000975554,57.76500723644931,13.23261047289875,51.71443028099766,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN05,Kaolack,0.3752866934893755,70.07766012114477,53.55297149485432,13.971752202089661,41.36702804850274,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN07,Kolda,0.5547534305982198,87.09706093987697,63.69370270498172,6.16258746522036,71.31958290531998,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN07,Kolda,0.468038524178805,79.49332319879203,58.87771517720587,10.86886821531145,56.90556927717692,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN07,Kolda,0.3862215021743929,69.63218136455262,55.465949020377124,13.582286700645971,45.71308625929909,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN08,Louga,0.5028002913467032,84.86295843139094,59.24849906725813,4.222905246552091,62.722781413204295,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN08,Louga,0.375469251928066,70.7537719639499,53.06702971530236,16.70540242539597,42.75243028785404,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN08,Louga,0.2973500245381875,57.82800692429291,51.41972555399862,21.146997986989,28.21685974043815,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN09,Matam,0.5330442921856241,86.3991279058708,61.69556396059455,7.289851898058219,64.36834392057663,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN09,Matam,0.4175644429036424,75.31646422015163,55.441323119350386,15.551194009884501,47.78878838208737,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN09,Matam,0.3566481211152012,68.16283565434301,52.32295835281572,20.03729506025632,39.5793331090267,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN10,Saint-Louis,0.417108835626046,70.01891894411645,59.5708762597362,9.96799431360738,52.259210865098204,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN10,Saint-Louis,0.2841482316302112,51.54981489695501,55.121096399319136,17.42583722731467,35.73489485338436,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN10,Saint-Louis,0.2728563743487901,50.601014738366516,53.92310327363967,16.94824509209163,30.80517182534056,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN12,Tambacounda,0.5826592180168279,89.73223142448332,64.93310249474641,5.46976057324549,73.24574025750019,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN12,Tambacounda,0.4900654385428048,80.79943984699136,60.6520836618217,9.5657268405775,63.15864780285696,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN12,Tambacounda,0.338862442419338,60.13844924658177,56.34705361788133,18.29047393880133,40.42012533979937,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN13,Thiès,0.3138827450833588,57.89713788841856,54.21386212359667,11.73263617638597,35.5996391224634,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN13,Thiès,0.2231436506073027,45.9017414880851,48.61332998993624,20.18430476209956,21.795052084235262,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN13,Thiès,0.2016550583941514,42.194685068055946,47.7915780314277,18.39946709321218,17.17581614484192,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN14,Ziguinchor,0.3149460669634814,63.37933496493902,49.692232829155955,15.44162446038199,29.08217128925077,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00 -SEN,SN14,Ziguinchor,0.1642228181343126,36.75603335951277,44.679146013401464,25.30764370527525,14.200828260518389,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SEN,SN14,Ziguinchor,0.1099788754197303,25.276766442314553,43.509867320536785,26.082864945256112,8.27392428978779,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,,0.4091174861607224,74.05257014918004,55.246898971440004,14.48398681467285,47.27229554920122,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -SLE,,,0.2967369045098346,57.92637455320732,51.22656247669563,19.65317933449878,30.41604399366492,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SLE,,,0.2724050356540454,55.21930481866741,49.33148589041206,22.523693722823122,26.291295169220653,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,SL01,Eastern,0.4415428363755428,78.14508644071468,56.502955782193965,13.73627155741985,53.19539514486854,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -SLE,SL01,Eastern,0.3156743534205239,61.88533344907524,51.00955845705977,21.03936074333089,31.61518105265228,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SLE,SL01,Eastern,0.2894190786659548,60.001318833436045,48.23545286885839,23.78020107017777,27.93262100473155,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,SL02,Northern,0.4605882302223471,81.47840059205353,56.52887475398821,12.260380467283841,54.276938374884686,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -SLE,SL02,Northern,0.3674902807127611,69.1849447082154,53.11708815590386,17.363582813347563,40.72132523557627,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SLE,SL02,Northern,0.3253290745085824,63.974140231419106,50.85321558550717,22.251398955603722,32.91268144122539,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,SL03,Southern,0.4513620510395076,81.82130664277105,55.16436605078165,11.79140363002767,52.35917904647695,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -SLE,SL03,Southern,0.3569247466311459,68.56380453422783,52.05731348425464,16.7464051232587,38.18110912343652,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SLE,SL03,Southern,0.3319581059385857,64.65497748749235,51.34300851048997,16.61221612242798,34.051561424131336,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,SL04,Western,0.1658609137998125,37.42449568358955,44.31881065335015,25.276367587678962,12.90493696218408,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -SLE,SL04,Western,0.1263804362703717,29.003143572633437,43.57473732248144,24.026834239145458,7.9672458415583405,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -SLE,SL04,Western,0.1022152017965562,25.325183167154957,40.361090824852305,27.486407328836638,5.22503695050704,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,,0.0007535567072669,0.17669187338191,42.64806823560537,4.1917458336528,0.053210395265030005,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SRB,,,0.0013639264193929,0.32076364755069997,42.5212280072133,3.41717502575106,0.10504595952521,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SRB,,,0.0004331141474629,0.11367367319895999,38.10153532250457,2.0989988797452,0.00772455154572,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Belgrade,0.0014625161832855,0.33246250864341,43.99040930218756,1.29408757315797,0.09248723350165,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SRB,,Belgrade,2.37021130278e-05,0.00711063390835,33.33333333335,0.8376659155172699,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SRB,,Belgrade,0.000151474059991,0.04544221799728,33.33333333334999,1.0564792482017,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Southern & Eastern Serbia,0.0007917463026923,0.21390411537849002,37.014075268790855,4.945267648994999,0.03264320069769,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SRB,,Southern & Eastern Serbia,0.0012989750121974,0.34838184777328,37.28595564034037,4.02575714200945,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SRB,,Southern & Eastern Serbia,0.0002743448537922,0.06172759210322,44.444444444460004,2.87490154481277,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Sumadija & Western Serbia,0.0002235625248671,0.0670687574601,33.33333333335,6.8598418093980404,0,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SRB,,Sumadija & Western Serbia,0.0005368853905149,0.16106561715438,33.33333333334999,5.28793098897844,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SRB,,Sumadija & Western Serbia,0.0009527690609643,0.26269278000558,36.26932803193199,2.48783406047078,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Vojvodina,0.0007295813704577,0.13651279963852,53.44417317566834,2.88594622848351,0.0988339337984,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SRB,,Vojvodina,0.0033437257376912,0.71181611530614,46.974572024870795,3.0230389706797203,0.38901733884876,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SRB,,Vojvodina,0.0002376200604567,0.05334939044072,44.54035153798472,1.87485666166227,0.0271351878684,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,,0.1847954922385889,40.73287141224612,45.36765659565831,20.792151995791542,14.08388435624301,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -STP,,,0.0862937710890692,20.902936414360042,41.28308548543757,19.21946894790592,3.8668924998721597,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -STP,,,0.0476196542337104,11.62575188250257,40.960494181353305,16.71349405622712,2.0830375167929303,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Região Autónoma do Príncipe,0.1589792855992077,37.643944730896436,42.23236611776361,21.76429239109542,7.256189955765791,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -STP,,Região Autónoma do Príncipe,0.0667631100531891,15.59509186552984,42.81033457760965,22.581651531966198,3.38221027661427,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -STP,,Região Autónoma do Príncipe,0.0465418544559245,11.5267095553907,40.37739845206585,21.16476891450444,1.7502093977267201,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Região Centro Oeste,0.1480851329311948,32.745660191136174,45.22282710649992,20.60905578805201,11.47276945739414,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -STP,,Região Centro Oeste,0.0644135684712325,15.877065688819139,40.57019712187338,16.79665323434259,2.5252969626008404,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -STP,,Região Centro Oeste,0.03671970720223,8.98013901670959,40.88990953692887,14.61161664107502,1.59598528503032,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Região Norte Oeste,0.227297111989548,51.166345079579955,44.42316754030967,21.97016997661947,16.881479421982608,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -STP,,Região Norte Oeste,0.1340934498356645,31.735070848174914,42.25402567310676,24.4661277543539,6.88476141387238,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -STP,,Região Norte Oeste,0.0613619567154664,14.732844974328449,41.649767456582744,18.49422788492949,2.55525989169933,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Região Sul Oeste,0.2753084328408683,57.681420878144664,47.7291350749617,19.35625139592333,22.68172980423009,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00 -STP,,Região Sul Oeste,0.1336082792804055,32.257627632512644,41.41912753241067,22.80449460738793,6.4096240780014995,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -STP,,Região Sul Oeste,0.0700616429504931,17.38914303019194,40.29045182321432,21.12639185545695,3.3890021760526,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SUR,,,0.0588995209968136,12.735947893375721,46.24667240311863,4.11113022576723,4.20337938671288,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -SUR,,,0.0410901413496901,9.50167737301028,43.24514476402608,4.48351187522417,2.52985750082687,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SUR,,,0.0257355689157923,6.6656822568180205,38.60905444370467,3.03385430331107,0.9121223443707,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,,Brokopondo & Sipaliwini,0.3277035885868599,61.39888405023184,53.37289002170758,13.72835041601051,31.18194127445333,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -SUR,,Brokopondo & Sipaliwini,0.2204396435553849,45.791116588200595,48.14026387209511,20.043465477171623,17.743604458786592,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SUR,,Brokopondo & Sipaliwini,0.0934642403208886,22.35157859417749,41.81549859088505,16.77639087437893,4.8223050155855995,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,,Commewijne & Marowijne,0.0238710666130566,6.34893943201415,37.59851053656014,4.02847978984608,0.49022578855022003,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -SUR,,Commewijne & Marowijne,0.0324479474801279,8.18470993617495,39.644590624664424,8.51182491297931,1.34829030708343,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SUR,,Commewijne & Marowijne,0.0254437874962153,6.63099354779587,38.371003248333416,4.65556794780641,1.16050576905978,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,,"Nickerie, Coronie & Saramacca",0.0339617807189803,8.46007232303014,40.143605659881906,4.26913413219167,1.48056613391295,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -SUR,,"Nickerie, Coronie & Saramacca",0.0211177628412688,5.4797561114424,38.537778710939854,2.5948424401952,0.77880128719748,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SUR,,"Nickerie, Coronie & Saramacca",0.0157885484809659,4.29751149589384,36.73881616384615,1.9614130011914401,0.26148810610579,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,,Wanica & Para,0.0354730236238841,8.951474069632601,39.6281364923174,3.75341240561023,1.4866402823686,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -SUR,,Wanica & Para,0.0304581651512784,7.74904590264455,39.305697157999596,3.89676093916214,1.3760347238469899,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SUR,,Wanica & Para,0.0193301420052389,5.11868585143698,37.7638764446002,1.7042455468084101,0.62336840879604,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR07,Paramaribo,0.0220231570724814,5.77162943644366,38.15760750927833,2.00703027554132,0.79374078693725,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -SUR,SR07,Paramaribo,0.0143442006080862,3.8201029531293798,37.54925137903833,1.17854240043353,0.47412625304796996,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SUR,SR07,Paramaribo,0.0192567452848592,5.23065222277678,36.81518951117815,1.01584095565621,0.41804888255663,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SWZ,,,0.1843198000671341,38.71243586894108,47.61255548246541,28.847631337213,15.865220169356132,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -SWZ,,,0.100046719697612,22.29631752396658,44.871409635277445,27.59317844874593,6.94586186960496,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SWZ,,,0.0626561331823501,14.51261741216986,43.17355815485663,23.97853200785066,3.59520401953587,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SWZ,,,0.0329716609433141,7.9847024799794,41.293537268277966,19.03875683621447,1.34611763380308,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ1,Hhohho,0.1607196668979053,33.5416574999391,47.91643552445108,29.6212102088613,14.167822147863959,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -SWZ,SZ1,Hhohho,0.0713393218856705,16.6170191024938,42.9314797351134,25.76825198793259,4.1464980814503,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SWZ,SZ1,Hhohho,0.0547087093415464,12.848937058472758,42.57839313289405,21.60417338833989,2.4179109807689,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SWZ,SZ1,Hhohho,0.0297328084720322,7.54660508177398,39.39891931517758,15.47517447140066,0.74060450510849,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ2,Manzini,0.1355898056968121,29.70694468343666,45.642460758480944,30.43427566090892,9.122131317492729,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -SWZ,SZ2,Manzini,0.0683143827099786,14.75159074349969,46.309841357333895,24.37312480149485,5.35133162771834,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SWZ,SZ2,Manzini,0.0360121701484924,8.50984897634522,42.318224740057296,23.33587969979093,1.7826390947702502,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SWZ,SZ2,Manzini,0.0279223701745676,6.849003066356921,40.76851755509558,15.27065418033016,0.8894977227530301,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ3,Shiselweni,0.2419186574210706,50.601367663869254,47.808719129504304,28.245007205725457,22.53559568604016,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -SWZ,SZ3,Shiselweni,0.1357310165047973,30.07440485475408,45.1317381541937,35.19917428801442,9.57666495630783,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SWZ,SZ3,Shiselweni,0.0918761830975302,21.11694415777307,43.50827582394815,29.45013117556265,5.6891773145003,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SWZ,SZ3,Shiselweni,0.0343227237158719,8.407296287523131,40.8249246155493,25.52614952969953,1.4787575966522,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ4,Lubombo,0.2235200608540367,45.55336604106464,49.067737530645225,26.057642690271372,20.75564421753429,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00 -SWZ,SZ4,Lubombo,0.1429798887513693,31.819608225218182,44.93452205299389,25.74497014022669,9.911613155246469,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -SWZ,SZ4,Lubombo,0.0949710098307868,21.61684813743321,43.933791469963914,23.19733980045488,6.48765935935956,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SWZ,SZ4,Lubombo,0.0438691240991928,9.916791601740051,44.23721487854524,24.04525663328988,2.77002468102082,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -TCD,,,0.5950734147326341,89.7833632720998,66.27880634513426,6.26363741094038,73.89912462382658,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,,,0.5780731021759746,89.3636028286976,64.68775697014941,7.24168364199638,70.76245179413603,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,,,0.5537846541492177,87.11664226145889,63.56818166696221,8.60343869980828,68.6937409280083,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,,Borkou-Ennedi-Tibesti,0.6274684383736423,94.8933735822931,66.12352524588991,4.14765483994526,81.62458751933048,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,,Borkou-Ennedi-Tibesti,0.6012575150224563,94.02297606663424,63.947934874593194,4.84418330086224,78.63210488978083,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,,Borkou-Ennedi-Tibesti,0.6167103737513223,94.39895514215418,65.3302118463733,3.85295963733313,80.85985121321629,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD01,Batha,0.6822952272487064,96.74526010072788,70.52492561788807,2.3783741081766103,85.21568073725457,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD01,Batha,0.669066548532484,96.35954998486449,69.4343787032605,2.73254476496609,89.45430704842408,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD01,Batha,0.6814835544164088,95.58005510255556,71.29976580210071,2.53780665974421,88.27642720553712,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD03,Chari Baguirmi,0.6665448461252578,95.53859935534923,69.76707326910768,3.3310672687495,82.36835748805846,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD03,Chari Baguirmi,0.6634350084256238,98.4365315771736,67.39723533488123,1.45689900576602,85.00177864509764,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD03,Chari Baguirmi,0.6221738704354803,95.20062166392017,65.35397138811712,3.79805422366491,80.78563359513262,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD04,Guéra,0.6821147633167919,96.81625134735856,70.45457284536786,2.85279558525471,87.14842456946732,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD04,Guéra,0.6559752386814591,95.12550013739877,68.95892665310267,4.040196115801431,81.78364314967651,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD04,Guéra,0.5972175931480984,90.83200070323424,65.74969047520202,6.67086416845082,75.55821612363822,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD05,Hadjer-Lamis,0.7174742669427101,98.45251802678446,72.87515660569674,1.1011181623597301,89.59511424919548,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD05,Hadjer-Lamis,0.6641527451757762,97.05848293324853,68.42809871987633,2.38703397219991,85.57519432389198,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD05,Hadjer-Lamis,0.6613683153040789,96.12480680208058,68.80308395998397,2.58391514805032,86.33992066894207,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD06,Kanem,0.6676493973771505,97.06882223440428,68.78103411669034,2.46188813566465,86.29916128747755,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD06,Kanem,0.6992271425632431,98.9117144210702,70.69204559397399,0.6863228031894599,90.37549736096074,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD06,Kanem,0.70255468736854,99.4923946372141,70.61390872441189,0.44291910116271,92.04807803861239,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD07,Lac,0.7072659758538539,96.80313327111098,73.06230200969368,2.19055471970924,87.4052012692782,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD07,Lac,0.7289091101242346,98.36968849722663,74.09895479589578,0.9400974511839201,91.94397558171157,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD07,Lac,0.6832527110462606,97.43250949648811,70.12574289394527,2.51777796584635,89.36819720992945,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD08,Logone Occidental,0.5426376705281504,87.86546687736644,61.75778605780451,9.73780574548607,65.81101089310695,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD08,Logone Occidental,0.4722223719486945,81.05770803942833,58.257552966954684,13.462194886237592,55.666164085196776,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD08,Logone Occidental,0.5281073033341064,86.28731914617032,61.203350452862615,10.33182020544423,62.29542144374584,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD09,Logone Oriental,0.5992188035766814,94.02088127795827,63.732523608791055,5.42679072601657,76.7464229478795,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD09,Logone Oriental,0.5404234205941423,89.042392405529,60.692823496124426,9.83594448846773,62.03584068816483,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD09,Logone Oriental,0.5060709169023795,87.09993425090822,58.10233053041631,11.09110966159078,57.5845714789903,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD10,Mandoul,0.6007735658704555,92.37486475393531,65.0364758282216,6.56637956479091,75.1931377811881,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD10,Mandoul,0.5780248792795599,92.10061543660932,62.76015383169731,7.06850723867343,71.32949450537124,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD10,Mandoul,0.5200765110350526,87.90921872604699,59.160633955327945,10.80876792244421,61.13265225793122,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD11,Mayo Kebbi Est,0.6050681565190953,93.10152638630942,64.99014355666574,6.52044535164871,76.25472842253369,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD11,Mayo Kebbi Est,0.561579251476653,89.70245224376296,62.604671046292346,9.04396008135328,67.80796983884316,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD11,Mayo Kebbi Est,0.4839657133630622,84.63329819326286,57.18384178505141,12.83140498575023,55.38502466523645,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD12,Mayo Kebbi Ouest,0.5519262839941933,88.47061047359097,62.385269078588166,10.44514818155872,67.12228810696632,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD12,Mayo Kebbi Ouest,0.5314393491716785,88.54200543358364,60.021155672865,9.62183035807377,64.51530381021328,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD12,Mayo Kebbi Ouest,0.4630810925765868,80.9149641460204,57.23058737823864,15.843493089086872,54.29284034340229,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD13,Moyen Chari,0.5144818439300888,87.7228087803853,58.64858308608174,9.35519082062668,61.05114983151535,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD13,Moyen Chari,0.4581175037238704,79.2163323355499,57.83119341897138,15.90983560011432,49.71226624984948,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD13,Moyen Chari,0.4515080259762164,79.0339898834565,57.12833511784111,17.593126370343278,49.73077106306659,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD14,Ouaddaï,0.6647265986552597,94.63898217156128,70.2381390207943,3.4754823725376602,85.80167452061633,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD14,Ouaddaï,0.6920935444772194,97.32515339026901,71.11147738981295,0.633056234634,89.76591235879494,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD14,Ouaddaï,0.6334013897861231,90.95992255306984,69.63521647861674,4.39781641442468,85.30247114135445,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD15,Salamat,0.7377357197323942,98.27201516677584,75.07078373028119,1.2279904822744598,92.64251367463552,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD15,Salamat,0.6923543899003001,97.90775433325477,70.71496988315042,1.24961042991999,88.31120625386575,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD15,Salamat,0.636289269618538,94.65720423737791,67.22037426996839,4.47663691379238,79.70134741438122,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD16,Tandjilé,0.5987701962620773,92.54138388377346,64.70296543372396,6.94990514980082,72.0167219913293,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD16,Tandjilé,0.5251021188187109,86.44415129941125,60.744667039409926,12.23069330426138,57.594314194669785,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD16,Tandjilé,0.5202102280293348,86.29748047000206,60.281044729940305,12.14320383073766,63.56057368132107,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD17,Wadi Fira,0.6989706073952678,97.89226940273691,71.40202302590872,1.6236757953947598,92.57842532390495,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD17,Wadi Fira,0.7115134626093269,99.21551546399013,71.71393095947454,0.60424246878441,94.18712640852928,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD17,Wadi Fira,0.68067695303741,95.53986732318891,71.24533162002832,2.23030212480051,90.98111073635917,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD18,N’Djaména,0.2872355145767851,55.90365750485877,51.38045118994595,16.687288597407328,29.533173282376453,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD18,N’Djaména,0.2718994596049774,56.1194303906984,48.450146003271584,17.193518636018908,25.082457197544638,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD18,N’Djaména,0.2338969787089319,47.703537414054544,49.03136987070071,17.53256516013777,23.53133391800086,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD19,Barh El Gazal,0.6519280224144226,98.01243296656577,66.51482905610656,1.15386385400544,84.83304577454768,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD19,Barh El Gazal,0.6613837096358155,97.84334743415283,67.59618583991283,2.15665256584729,86.62931620884923,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD19,Barh El Gazal,0.644244326070137,94.54790492757499,68.139460791187,3.4719041587968604,85.39685646273539,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD21,Sila,0.7098039782705252,97.21219519390468,73.01593970331726,2.41106524791698,90.94897501821734,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TCD,TD21,Sila,0.7046682995477259,98.04427593900358,71.87245688734774,1.81159099509564,91.99853077344751,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -TCD,TD21,Sila,0.6819748294491536,97.72865625057891,69.78248301097601,1.7468287376029301,91.97466779780528,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TGO,,,0.3206806865753632,58.24103805761977,55.06094967917697,18.11750876676399,34.86856558258997,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TGO,,,0.3006338145710827,55.12825207769566,54.533529223342825,19.70524876291694,31.7497661406109,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -TGO,,,0.2132205191970755,42.954289517834546,49.638935154205434,22.420908886897532,19.69679880085102,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,,Lomé,0.0867094715242128,20.14966627136267,43.032708510635246,19.933601563699398,5.45759388725958,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TGO,,Lomé,0.0761333555165183,17.64444059182942,43.148636603289795,24.02994804747646,4.87592850742056,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -TGO,,Lomé,0.0561745364515407,13.151275083261691,42.714136915162634,19.25117156837584,2.7076907107278303,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG01,Centrale,0.3443523474034241,64.12371446985588,53.701247697574,21.30171541081448,35.755797404112585,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TGO,TG01,Centrale,0.3201497706181468,64.3578112732662,49.74528565907504,24.13656099417131,27.458739408152837,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -TGO,TG01,Centrale,0.2233393501470058,48.153514093403224,46.38069606172357,24.632283733882822,19.64686444520305,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG02,Kara,0.3844200550383822,67.84519322680961,56.66135458605716,17.43521128975951,42.00248157186391,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TGO,TG02,Kara,0.381913166925207,67.25696297448431,56.78418263847207,17.07254756008366,42.66789781470405,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -TGO,TG02,Kara,0.3123016754904341,57.7827122562272,54.04759716116955,17.4860744683945,34.06937776956356,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG03,Maritime,0.2505102510681285,48.25129515051177,51.91782941508701,19.88467797370423,25.93606745785632,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TGO,TG03,Maritime,0.3013493136726414,58.257687711971684,51.72696093990623,19.65400165338393,31.65574661561817,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -TGO,TG03,Maritime,0.2126768452332503,44.98947661618218,47.2725759954169,26.486710037398243,18.98999983690685,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG04,Plateaux,0.3736217802651914,70.10291287869056,53.296184840667706,18.1359429198922,40.945634535599055,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TGO,TG04,Plateaux,0.3755720989304956,66.73856777119964,56.27512118900609,18.82231178231286,42.12102844702635,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -TGO,TG04,Plateaux,0.2266404590059996,48.36664065174155,46.85883823065121,25.615915946066952,18.13040988015193,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG05,Savanes,0.5266277375411129,83.00165605907107,63.44785906034448,11.21599870403654,64.07189798370382,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TGO,TG05,Savanes,0.5018425369503688,82.58207788955278,60.76894040151727,11.97508996044789,57.62703998329742,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -TGO,TG05,Savanes,0.3802068239425671,68.50445118039362,55.50103933266522,20.71136252813687,41.23542697359232,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -THA,,,0.0048130968452523,1.3088027429556301,36.7748071369645,8.88262135547845,0.05530899013318,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -THA,,,0.0037057110560991,0.9306029365265599,39.82053903602011,7.1101023341613505,0.21128850059259,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -THA,,,0.0021336169407251,0.58104115453001,36.72058208081458,6.1600861065277,0.02997745572143,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -THA,,,0.0018171864624753,0.4910021485332,37.009745637649985,4.69189533649427,0.03180580331417,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH10,Bangkok,0.0009834795801433,0.28459304227396,34.55740071103173,1.36388910080375,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -THA,TH10,Bangkok,0.0003126981610806,0.0863634971693,36.20721384957327,1.78052925629622,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -THA,TH10,Bangkok,0.0004868888979586,0.13950810469711,34.90040231108089,1.45907504151383,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -THA,TH10,Bangkok,0.0008312386873633,0.24937160620891,33.33333333334316,0.95569612483913,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH27,South,0.0042617044380805,1.18751432741588,35.887604382460594,4.49899217560551,0.03463057228868,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -THA,TH27,South,0.0026554278232192,0.75486588367904,35.177478286304584,2.76761939164987,0.02450549682061,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -THA,TH27,South,0.0026794180445041,0.7519073208804,35.63495087887614,2.93413557315063,0.04051833729491,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -THA,TH27,South,0.0031629988678746,0.83635519537306,37.81884641086923,2.72078852114506,0.07022138077751,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH55,North,0.011263249352718,2.9057315122943397,38.76218193271626,12.448582402541849,0.30903547971671996,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -THA,TH55,North,0.0066100785069401,1.66529996442774,39.6930201653587,12.57554501852494,0.3512595803103,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -THA,TH55,North,0.0038251456786105,1.00674773618085,37.99507603683679,8.992167121180659,0.1089681074054,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -THA,TH55,North,0.0032762665338671,0.87718283692851,37.34987047100845,7.31574123499012,0.03556347794738,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH57,Central,0.0027763681910285,0.8035005539983601,34.55340730274291,3.02441376596666,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -THA,TH57,Central,0.004858036848988,1.13943167895041,42.63561333894987,3.31133754399512,0.48544524404834,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -THA,TH57,Central,0.0017487940984966,0.49464450681935,35.354564225157446,2.08216840518519,0.01863068275798,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -THA,TH57,Central,0.0007728895601565,0.18959093329641,40.76616675271861,1.19978465689407,0.05472020568556,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH96,Northeast,0.0046875346471454,1.29643263259503,36.15717877883498,15.376559645550362,0.00272085158487,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -THA,TH96,Northeast,0.002745437412656,0.72887961901774,37.66654109983025,12.68647942131926,0.01033101928412,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -THA,TH96,Northeast,0.0019779633551502,0.52774331213807,37.47964795871735,12.49871686615542,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -THA,TH96,Northeast,0.0019383158083929,0.54725726324376,35.41873152863925,9.9100563252357,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TJK,,,0.0492981564912028,12.193799749068571,40.428871644352235,25.81515031921991,2.37490899869028,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -TJK,,,0.0288749251558552,7.4053069139896,38.99220584808803,20.125807555751678,0.73162258073474,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,,DRS,0.037599971539234,9.47508179752544,39.68300468820624,29.29006428926081,0.98745232380013,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -TJK,,DRS,0.024294526970761,6.2502494759981,38.86969162439939,21.72162039012573,0.4130266275649,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,,Gbao,0.0553630416508868,14.440901323463882,38.33766356462239,27.04413522696954,1.35123663686264,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -TJK,,Gbao,0.0242893421511226,6.31083170083658,38.48833767489437,18.84067349058008,0.48669086451982,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,3501000,Dushanbe,0.015181697456092,4.1674409325805195,36.429304462130304,9.70897060868003,0.10316204767318,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -TJK,3501000,Dushanbe,0.008496766575373,2.2445182110854702,37.85563660570107,3.5961030941139303,0.12725447212659002,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,3505000,Sughd,0.0351802319358338,8.55609051077499,41.11718066975807,23.760048981297118,2.06355451014623,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -TJK,3505000,Sughd,0.0226698212174075,5.9226341539084,38.27658543191883,17.25012570807742,0.8593244848666901,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,3507000,Khatlon,0.0769305078026389,18.88153909949067,40.74376956098568,28.95450226584132,4.20576282448086,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -TJK,3507000,Khatlon,0.0413984154635884,10.498918471595669,39.43112385870016,25.215052291442152,0.96919476504397,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TKM,,,0.0122972105227264,3.2532261505060798,37.80004817929236,7.4609610852815695,0.15541322363651,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -TKM,,,0.0037215098755215,1.0671511611114501,34.87331515101838,1.0750816416303899,0.035621585819679995,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TKM,,,0.0031396241752082,0.93396369829011,33.61612641857704,0.57862762608648,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Ahal,0.0115737078861735,3.2519697263664598,35.58983895924888,4.42125526555042,0.19425507049619,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -TKM,,Ahal,0.0015988023404233,0.47964070212688,33.33333333334,0.82223204392974,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TKM,,Ahal,0.0058658375332325,1.74008593906665,33.71004501294231,0.07461172548895001,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Ashgabat,0.0020070325175844,0.6021097552751999,33.33333333334,2.39682590545869,0,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -TKM,,Ashgabat,0.0016461424953877,0.44923245769383996,36.64344521850102,0.31894523667713004,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TKM,,Ashgabat,0.0016288173800701,0.48864521402094996,33.33333333334,0.05379227999655,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Balkan,0.0038357771881143,1.10539444623963,34.70052885793813,5.91927796073557,0,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -TKM,,Balkan,0.0018365968381049,0.5509790514313699,33.33333333334,0,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TKM,,Balkan,0.0019300819627726,0.5790245888316601,33.33333333333998,0.21301417594122998,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Dashoguz,0.0159805520371124,4.141945502789881,38.58223635812791,10.14271589869983,0.26199247412438,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -TKM,,Dashoguz,0.0054236443961368,1.62709331884071,33.33333333334,1.5092232474584502,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TKM,,Dashoguz,0.0024170459598846,0.72511378796525,33.33333333334,0.84440103265064,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Lebap,0.0087496369613742,2.27853207299479,38.40032389745616,10.25935689368688,0,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -TKM,,Lebap,0.0062478587383828,1.69446688941783,36.872120531841155,2.05347007555637,0.18320591814038,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TKM,,Lebap,0.0038937543570939,1.14565015825726,33.987289479512626,1.38570805686847,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Mary,0.0197980598573118,5.16887278408531,38.30247074036904,7.15589998634668,0.29393925669730997,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00 -TKM,,Mary,0.0027556654754783,0.79019122802694,34.87339997887573,0.68089842682209,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TKM,,Mary,0.0025946872104954,0.77840616314846,33.33333333334001,0.2283929593342,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TLS,,,0.3617266512132281,69.60968220702824,51.96499103923588,17.5578175771496,39.02590704113708,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,,,0.2151432110141636,46.88844415916659,45.88405840122197,26.38486496579172,16.873869345700708,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL01,Ainaro,0.4602814729645744,83.85937549468598,54.88730034648799,10.909760439007849,54.17076005371193,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL01,Ainaro,0.320602728379089,66.8960985357032,47.92547478803711,18.81740574746133,29.392652774695037,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL02,Aileu,0.3635527825639088,72.17929586425367,50.36801456855942,19.15037517634029,38.65184521223138,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL02,Aileu,0.2335810093411122,52.17907295731975,44.76526624613886,28.272387477483267,17.14124393717373,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL03,Baucau,0.3787664634492003,75.83264985775125,49.94767612099796,15.992243185763192,41.17497590690006,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL03,Baucau,0.2064948952281808,47.07161021164862,43.86824548803736,27.81822876724564,14.21840037755207,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL04,Bobonaro,0.424535958445813,80.13289630521918,52.978985912201715,13.44005984118603,46.84907939964564,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL04,Bobonaro,0.2487403242068199,54.23890679499331,45.86012862445461,23.36347133558731,19.971017805121647,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL05,Cova Lima,0.3124526640667338,66.22583824288384,47.17987304604754,20.63073384908514,28.0377400531428,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL05,Cova Lima,0.2275361129314231,51.952929933913225,43.79658918579966,24.26419391658819,13.859693078541929,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL06,Dili,0.1099453717383007,24.89475631116289,44.16406827368732,33.82498934256235,7.19291714287623,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL06,Dili,0.0910151942465198,20.97818735104024,43.38563324061776,31.8059747927699,6.12128975302651,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL07,Ermera,0.4857925476891575,87.18564124868571,55.71932955146791,8.38699459347067,55.604482794114105,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL07,Ermera,0.3223102886911445,64.90733819431125,49.65698758532561,17.91588294071097,30.6623831505298,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL08,Liquica,0.3744046126234941,71.09704896265649,52.661062320624474,19.01148442505922,39.247855394015616,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL08,Liquica,0.2332151491490466,50.338256615089485,46.32960392973511,30.248544945419408,19.230137519545508,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL09,Lautem,0.3775789346405777,75.83620893069401,49.78874075649584,14.563747236675251,38.75570892859868,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL09,Lautem,0.1815635332891985,41.96514161052082,43.26532124549766,25.18040140428612,12.887336106075931,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL10,Manufahi,0.3707384026427347,73.11882864921759,50.70354784009545,19.05150561735444,39.43135153985831,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL10,Manufahi,0.2179246863438256,47.805870107652545,45.58534043059727,27.48191790424291,17.13498085590357,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL11,Manatuto,0.3126722770031095,63.994969270565875,48.85888384150241,21.9827206958758,31.39518347752144,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL11,Manatuto,0.2108499435733406,46.47385330414249,45.369584956396594,31.227957799457467,15.195548947794821,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL12,Oecussi,0.5026287485473558,86.33576406053922,58.21790703038305,8.59522234395778,63.69678289784898,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL12,Oecussi,0.3289790869541556,66.57811567718687,49.41249592422465,18.42149895618048,31.148268133283658,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL13,Viqueque,0.4079597718748321,79.94755990134156,51.0284206770376,14.50105523501923,44.05791198393902,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00 -TLS,TL13,Viqueque,0.2127297928247504,49.15637035016369,43.276139248967546,30.37918395424446,11.87833932948096,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TTO,,,0.0178857891113723,4.95645833173095,36.08582563252579,1.5726016310347,0.22583156241490002,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -TTO,,,0.0077728721129935,2.12382988462027,36.59837432969958,0.73099835705863,0.26646619118447,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,Central,0.0177535121479402,4.91171771815337,36.145220810073155,1.32760550272178,0.14328409189341998,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -TTO,,Central,0.0074707645911282,2.14158544238602,34.884270518783374,0.4382078452444,0.12112469870992999,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,East,0.0185334527162748,4.93416606740717,37.56146927988138,2.72844185317575,0.49236959108267003,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -TTO,,East,0.0093418976439246,2.2176964985513603,42.12432878000631,0.74812591022684,0.62913145236767,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,North West,0.0203058678038207,5.66961743195064,35.81523453308983,1.11306328854005,0.2826408903271,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -TTO,,North West,0.0077517957669762,2.28698648503154,33.89524082329384,0.679640763054,0.046969789394580005,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,South West,0.017573874647959,4.904098556115731,35.83507640979864,1.93528237373211,0.21766307124114,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -TTO,,South West,0.0068171399249941,1.79044720705335,38.075068050811325,0.95432031813986,0.36753035560738,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,TT90,Tobago,0.0053929782671364,1.48144943387583,36.40339078619169,1.8613152688357197,0.20781477815771002,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -TTO,TT90,Tobago,0.0148457967366082,4.0047390494643,37.0705720228988,0.6764248165997401,0.49315385278637996,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TUN,,,0.0052685040995175,1.33054651884748,39.596541908817116,3.7694337600839805,0.16552602119146,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,,,0.0028773532440503,0.78994964287275,36.42451477775791,2.4119957708140403,0.05968887930764,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,,,0.0034418494648613,0.97762844026553,35.20611024702294,2.82511410100259,0.022557466132240002,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,,District Tunis,0,0,,0.64833777895343,0,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,,District Tunis,0.0003927433990164,0.11782301970489,33.33333333334,0.41323701062273,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,,District Tunis,0.0024273184847902,0.72819554543692,33.33333333334001,0.63045519743768,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,,South Western,0.0034486535257366,0.80592654006242,42.791164632318214,2.4253021276203697,0.31769683694102,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,,South Western,0.0034217519813861,0.9978026001206499,34.29287497318948,1.48620447057566,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,,South Western,0.0027063938303096,0.7841381591657,34.514247249351584,0.8372350195366101,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN1,North East,0.0037191047304639,0.96958373362285,38.35774674733326,3.14906585736602,0.09561701602505,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,TN1,North East,0.0015486733400479,0.44987899202462,34.42422001254791,2.06529592425529,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,TN1,North East,0.0018786518357483,0.56359555072439,33.333333333339986,3.44400811924978,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN2,North West,0.0155514272312168,3.6797814012259398,42.2618235584205,7.55196009476526,0.5773593509510501,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,TN2,North West,0.004395166102456,1.20259541081959,36.54733805661708,6.06555134708247,0.053584934368750003,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,TN2,North West,0.0028643260744991,0.75524838572025,37.92561664024652,8.26240365624104,0.09760952414174,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN3,Central West,0.0181405238611949,4.636709606498131,39.12370064273992,11.35362605476683,0.5339917103610999,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,TN3,Central West,0.0078807928489161,2.17692028807262,36.20156829855067,6.06052401725838,0.0805675242423,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,TN3,Central West,0.009586460453429,2.6872875587116303,35.673370430163594,5.65837463353471,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN3,Centre East,0.0012778173782337,0.37879512191547,33.73373373374288,2.3798410372242103,0,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,TN3,Centre East,0.0033144677733619,0.8541180308984699,38.80573472820069,1.4984978648929999,0.18616635583411,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,TN3,Centre East,0.0019497541958509,0.55599592196545,35.067778716047386,1.1435460356323,0.050364320522599995,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN5,South East,0.0014536036924291,0.43608110772864006,33.33333333334045,1.713327090468,0,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -TUN,TN5,South East,0.0011203818424778,0.33611455274326996,33.33333333334001,1.55662656932265,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -TUN,TN5,South East,0.0053813953973182,1.47579106867204,36.46448004432296,3.0533301979535796,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TZA,,,0.3885118096129461,73.61111599443797,52.77895931401202,17.22839714410223,43.76761147866776,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,,0.3394436839043847,67.25024659396419,50.47471215292914,19.62526089523421,34.78949085691719,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,,0.2837750010667196,57.011223108414065,49.77528731967133,23.35738606576228,27.462057618978868,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,,0.2103079688009212,44.9066320310161,46.832273828878066,23.648593581018922,17.37490691189859,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Central,0.3843923801460469,73.00144375510241,52.655449039551364,17.589358548793772,43.601419202787014,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,Central,0.4334719828811968,82.96762461290913,52.24591940574275,13.9933949082444,50.587768450534774,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,Central,0.330660680936808,66.1246628090496,50.00565097649995,24.94963516932062,33.05187282615768,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,Central,0.2184402611990352,46.94283586634357,46.53324776137981,26.81692943768153,16.70015786152972,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Eastern,0.4015111432521664,75.28046301142557,53.3353711163051,15.03565912105532,46.93465197883296,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,Eastern,0.207829854314687,43.47264478727479,47.80704172282669,22.11523522566528,18.44220680768985,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,Eastern,0.1389517643416436,30.429986334144488,45.66277579485152,24.48075979725523,9.76906294621625,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,Eastern,0.1105920580944263,24.64628227218658,44.871699866567624,21.1685430316587,7.53750571123782,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Northern,0.3666230137684147,70.99121266489206,51.64343585719928,20.13830886673505,40.78742366803537,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,Northern,0.2854693594252908,59.3706567832245,48.08256719604823,23.91748077022564,27.695039160695462,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,Northern,0.200875839007231,42.40693180584109,47.368633016633986,24.58876211528331,16.963183129251238,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,Northern,0.2011761729528958,40.50217222594626,49.67046503842071,20.41408674086371,19.40528684866011,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Southern,0.5598961254350937,86.81359456444949,64.49406089497111,10.87880370533194,66.69276600590936,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,Southern,0.3278264061548683,69.2164274662056,47.36251467398069,22.11642117139214,30.873314613560222,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,Southern,0.2876043066387396,62.07445376358163,46.33215263304882,29.685546478620513,20.94187886038117,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,Southern,0.1698800620990627,40.83767042125107,41.59886211595965,27.87454874505891,10.10718938934043,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Southern Highlands,0.391697402028807,75.03477956077754,52.20211271648175,18.2928844927277,44.55868197294784,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,Southern Highlands,0.3420873944858409,69.63237304614013,49.127636977008585,19.854438168259968,32.655886754149186,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,Southern Highlands,0.2855782788891056,59.57801630855981,47.93349906282049,23.16646556104937,26.97119618739788,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,Southern Highlands,0.2030125486927757,44.84603954935985,45.268779747948464,24.34569012489287,14.38933539686592,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Western,0.3974475218100288,74.51952090925825,53.33468559117512,14.638774448257161,46.105370640399244,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,Western,0.4228442619736394,78.22177118832668,54.0571065510138,15.7955425375641,46.957583639128856,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,Western,0.3898716587216472,71.9211007315674,54.208244139195415,20.53158686649364,42.1777376451074,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,Western,0.3164161547612473,64.89935517908522,48.75489962698693,19.593794124880908,29.574563601819047,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Zanzibar,0.2816005269252755,62.31906683370914,45.186897242330744,27.59330450415383,22.89443700995955,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,,Zanzibar,0.2055480088810785,43.788941203076384,46.940620904219934,24.750418261298808,16.676523071713838,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,,Zanzibar,0.1315935686426068,27.907167723819942,47.15403940124177,27.98173641396819,9.92083195405954,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,,Zanzibar,0.074543695135865,18.15875969909269,41.05109400153006,26.13977391796541,3.17056928721429,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,TZ08,Lake,0.3719753359313404,72.93158530634946,51.00332515313581,16.511353425346638,38.20190727044425,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00 -TZA,TZ08,Lake,0.3760908543862914,73.44820707800432,51.204906062154954,18.59269536609866,39.12543662934148,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00 -TZA,TZ08,Lake,0.3464678910608898,67.83228929333578,51.077133717633295,21.20002088807966,36.23746314238506,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -TZA,TZ08,Lake,0.2498824768992345,52.69349191901752,47.421886043018105,24.650206810828678,22.03105542251069,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -UGA,,,0.3490645670328214,67.72519499602487,51.5413159095828,21.73143938395949,35.09053958644599,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -UGA,,,0.2810623271801988,57.180850352411795,49.15322620212554,23.62545903179087,25.68002360957363,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,UG1,Central,0.2207341731473141,46.06066438701158,47.92249006498436,28.40408641755795,18.58164289087541,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -UGA,UG1,Central,0.1597388026481763,34.58238742366251,46.19079668828108,25.272995598135513,11.99351267399446,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,UG2,Eastern,0.3773778978290772,74.792905259578,50.45637637946279,19.290555040728748,37.086094964345,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -UGA,UG2,Eastern,0.2875684834713051,60.50548846929396,47.52766910017488,25.46818608494914,25.37711161760295,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,UG3,Northern,0.4543707943099947,81.38909131606205,55.82698946048127,16.5088977911679,50.179818584478866,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -UGA,UG3,Northern,0.4044656997269152,76.36652638990084,52.963741949169496,17.247778321656178,42.9194445240743,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,UG4,Western,0.3722165798088031,72.23864499150612,51.52596367949158,21.30912590966372,38.62220289793107,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00 -UGA,UG4,Western,0.3015309638123487,61.71045230675972,48.86221904734269,24.98904862833242,26.470554758630737,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UKR,,,0.0012953852019824,0.35543338930359,36.44523111687759,1.4292836333685701,0.03539014644834,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -UKR,,,0.0008084904892693,0.23465495574467002,34.45443914463893,0.39954137376575,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,Center,0.0011765022224797,0.33451026624581,35.17088535677891,1.8149259008768097,0,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -UKR,,Center,0.0008462084886636,0.24004808626239,35.25162403247196,0.57909091151132,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,East,0.0002507860696627,0.058164149726620006,43.11694933071881,0.65032842162091,0.03414334234436,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -UKR,,East,0.0008071859285901,0.242155778577,33.333333333335844,0.18298383621529,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,North,0.001464235514315,0.41053539509357995,35.66648653963817,0.9794257676716199,0.057470518401849996,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -UKR,,North,0.0004648780902353,0.13508452237853,34.413867854718475,0.76717074148812,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,West,0.0031548317989814,0.86211031034117,36.594293806008785,2.63855330109158,0.06147790439107,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -UKR,,West,0.0011715887311576,0.32887855122521,35.62375006800883,0.45409999677220003,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,UA80,South,0.0004868254317186,0.1414648401069,34.41317512893926,1.39656582772321,0,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -UKR,UA80,South,0.0005920735552869,0.17762206658608,33.33333333332999,0.20105463976140997,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -VNM,,,0.0193570092316046,4.9269226919225,39.28823414124137,5.43108012857512,0.70632534654938,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -VNM,,,0.007729394853574,1.9191205225535701,40.27571360286072,3.4725311252811695,0.3501318684553,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Central Highlands,0.0388836027309013,8.88784695927846,43.749181223590725,8.53663412776074,2.7896005700803297,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -VNM,,Central Highlands,0.0259657375501501,6.18546808373929,41.97861374211977,5.50121000428062,1.1597649987592,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Mekong River Delta,0.0366008629594775,9.8119684705351,37.30226311813803,9.1497213278633,0.8784508716316799,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -VNM,,Mekong River Delta,0.0077798488418308,1.92563090524955,40.40155785110132,8.35257309966599,0.36697228895298,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,North Central & Central Coast,0.0104833761695559,2.85497310948555,36.71970196400524,5.82235133428679,0.11492956058553,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -VNM,,North Central & Central Coast,0.0033213352924265,0.87016210820282,38.16915562189009,2.3661873452500903,0.09276130426249,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Northern Uplands,0.0388877326454033,9.25853722361125,42.00202656876642,7.0589276952632,1.9172137369976499,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -VNM,,Northern Uplands,0.0262424524792067,6.329332500440151,41.46164303642091,5.41600407681901,1.5441837683284,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Red River Delta,0.0036455997739947,1.02864090579661,35.440937196362334,1.7247018058906698,0,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -VNM,,Red River Delta,0.0009506977941181,0.28058131212982,33.883147345116896,0.99400997662124,0,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Southeast,0.0108013119538036,2.7139011140370197,39.79994664483673,3.57892426283547,0.51197016045752,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -VNM,,Southeast,0.0029381747344679,0.8404619072471,34.9590470327416,1.3808840441880001,0,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -YEM,,,0.1925756069519854,38.1146601931609,50.525337488523704,19.26844993198333,17.76750568888964,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,,,0.1879929869734442,37.4449480317616,50.205167013180166,22.49156728057407,16.964479302993578,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE11,Ibb,0.1742891557712046,35.322107781367464,49.34279597638926,24.16575435083696,14.508878390364318,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE11,Ibb,0.1445617718349428,30.162280346283787,47.92799820679136,31.12553072190037,10.87888138021992,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE12,Abyan,0.0937079996645715,20.09065175237986,46.64258821442723,20.67729343768587,7.10459756737101,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE12,Abyan,0.1139465613222431,25.10725737879873,45.38391414207703,17.02659786625097,7.923119909314991,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE13,Sanaa City,0.0359241463796268,9.59955371889226,37.4227255053814,1.19606282001351,1.7424768541026199,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE13,Sanaa City,0.0357231577079841,9.3384065011147,38.25401871691908,8.60139927196492,1.15543859876008,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE14,Al-Baidha,0.1667667837945581,34.642428697127656,48.13946079028386,17.12182139068475,13.34733348700319,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE14,Al-Baidha,0.1829672332172006,38.52055451933653,47.49859795641177,26.70901003252133,13.926344288783241,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE15,Taiz,0.1605150358815365,32.64352615167102,49.17208855922562,21.74777729793547,14.35532733097359,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE15,Taiz,0.1251694305130883,26.420049897815563,47.376682102117265,30.38295826423772,8.77400434551661,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE16,Al-Jawf,0.2126645159101789,46.15351591095462,46.07764147816582,30.708146880426668,15.0587901184771,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE16,Al-Jawf,0.3657513488962494,70.93864944876672,51.55882607553758,23.049028438234,39.29156847823698,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE17,Hajjah,0.3877805396080913,67.29954990578896,57.620079205720685,16.38587633624308,45.70312737253887,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE17,Hajjah,0.3805091737224833,69.18271229820122,55.00061519449516,18.52179356786569,42.47453175844838,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE18,Al-Hodiedah,0.2585652494206483,49.53638629566161,52.19703510009437,17.90196644892258,25.54191963539449,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE18,Al-Hodiedah,0.2347627123061929,45.862050089781,51.188883149927655,23.42284876971884,21.84394023802049,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE19,Hadramout,0.0933483164399959,21.61741866111815,43.18199036774704,11.414630060630671,6.31074929119142,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE19,Hadramout,0.0414922475704881,9.37289386746275,44.268342474809344,9.18300606010174,2.3864354650668598,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE20,Dhamar,0.2616887687069311,49.95443145391971,52.38549635948214,24.92346530948033,24.08826943234587,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE20,Dhamar,0.2518943576409921,50.09266036015765,50.2856817405813,29.558544546562842,23.418862590903462,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE21,Shabwah,0.1215634412365217,28.04424400480877,43.347020235481146,25.28215434690841,7.03505792828325,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE21,Shabwah,0.1647463606377032,34.45441148636669,47.81575233200309,21.40305012786622,11.84728334893758,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE22,Sadah,0.2458978850437367,48.92413175825745,50.261062630351915,25.41406282264384,20.35112273637093,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE22,Sadah,0.2661893017885874,50.587438688127975,52.619644064141504,22.77058312147675,25.803702387286208,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE23,Sanaa,0.2132033068815566,43.285269258465306,49.25539578106249,28.54251241596437,18.303188764293328,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE23,Sanaa,0.2085873448200462,43.74611062876351,47.68134625501949,32.419131234470946,16.79355084351739,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE24,Aden,0.0536601966379552,13.428625765047991,39.9595592109074,2.24837024924061,3.0174057644293097,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE24,Aden,0.0383479491420053,9.20742062035921,41.64895981531604,5.75890993493638,1.62869907155756,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE25,Lahj,0.1532324908639793,31.7234008647649,48.30266827860006,26.14231839377724,14.040041878184912,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE25,Lahj,0.1402268140828987,30.70516040077662,45.66881014546074,28.165634805684597,9.671427244819231,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE26,Mareb,0.1657378451156897,36.316336093444654,45.63727042541788,28.01099876767784,11.19656184123831,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE26,Mareb,0.2121034515916599,44.42794236616008,47.7410026878074,18.659312315628178,16.891829767810858,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE27,Al-Mhweit,0.2798222356227276,53.4244634656329,52.37717282883575,25.750470647185853,26.95169421668172,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE27,Al-Mhweit,0.2992796861710892,56.54312526221265,52.92945601843053,23.521567152018598,32.07179757181959,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE28,Al-Mhrah,0.0834442255571805,18.08874706773054,46.13046179745698,10.5310813973975,7.46632618352646,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE28,Al-Mhrah,0.0760892394088395,17.72003104466873,42.939676130946644,9.20973968918665,4.7906087840017095,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE29,Amran,0.2865837695641997,53.75854758125635,53.30943309638838,21.56225323530758,28.59175345093886,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE29,Amran,0.2430853807790609,48.549497763328816,50.069597416653814,27.92057274357107,21.76055773188551,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE30,Aldhalae,0.1483644963361813,31.9122338509068,46.49141674924316,29.84949502545232,10.55421936944721,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE30,Aldhalae,0.2341143375667558,47.30057374203853,49.49503125343399,23.81388415246306,21.104432490312842,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE31,Reimah,0.3373984061795627,66.50437481721835,50.73326485766893,23.97019742098621,35.8352862274059,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -YEM,YE31,Reimah,0.4597551620104385,82.95528301877549,55.42204731028173,13.334474134333579,50.43050452453329,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -ZMB,,,0.3433270652857839,65.16911002627411,52.682484868577376,15.810220913465182,38.51960913971062,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,,,0.2626565115990759,53.29579643622163,49.282781975759285,22.493856332091212,24.600404935817092,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,,,0.2316850733623361,47.90613054487378,48.36230159422208,23.91304758394834,21.02875426411528,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM101,Central,0.3572297600702646,69.2626089778871,51.576133983678595,18.70843247566829,37.91655109639226,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM101,Central,0.2693914519427049,55.62477292797935,48.43012164588996,26.0071067303086,22.380488188666668,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM101,Central,0.2486141223388297,51.23565315495357,48.52365628811997,26.2153480373576,22.21109456976342,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM102,Copperbelt,0.1884347175251552,40.78317935387843,46.204028354458174,17.78955096110408,14.610731754785181,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM102,Copperbelt,0.1411749483105117,30.889222767357598,45.703625945454114,24.54068490385896,9.95065796326884,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM102,Copperbelt,0.1240374516860652,27.885964761484328,44.48024400338622,21.92618667615309,8.53343081933979,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM103,Eastern,0.4562234302415688,82.33620369086997,55.40982092816091,12.47788782314669,56.31894254586467,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM103,Eastern,0.3593991772865838,70.10748267167739,51.264025406488756,18.66795736474473,37.089742598158395,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM103,Eastern,0.3216799445358587,64.72205202065689,49.70175303360131,21.65689827918741,30.711536150904962,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM104,Luapula,0.4670060029922319,83.70186547695188,55.79397786789191,12.53827662877271,58.0151147848259,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM104,Luapula,0.3797112021413602,74.79770550719621,50.765086918986924,17.73209377409026,36.793336109863475,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM104,Luapula,0.3474417776822786,66.66826097898748,52.115020338056404,19.65498945089518,37.19217081985285,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM105,Lusaka,0.1461486759732082,32.03654097352511,45.61936823765868,17.197579851042928,11.941230018131819,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM105,Lusaka,0.0981369609814262,22.5260508420515,43.56598574226102,22.66718536903109,6.432541492254639,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM105,Lusaka,0.0850443477781946,19.47907050316503,43.65934594485724,25.135417482565032,5.42293861990912,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM107,Northern,0.4357417074030965,79.66392900845547,54.697491427625586,14.55077095429809,50.26272527482875,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM107,Northern,0.3603803461474184,70.57839776143732,51.06099848930309,21.2310655286497,36.95155142265248,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM107,Northern,0.3130498727620564,63.49885925390798,49.30007821247436,23.168015841486252,29.66404736226307,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM108,North-Western,0.4506529439966445,82.62485036252451,54.542058717124576,13.37043949520987,54.64364341820901,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM108,North-Western,0.3290782376176213,66.63265462374459,49.38693189935646,22.19043369078231,31.489707443781572,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM108,North-Western,0.253192051374705,54.13328680960016,46.77197086983515,25.849456553783263,21.13283609752373,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM109,Southern,0.3164367757298136,62.889692668841015,50.316158706018555,22.08879294476235,32.64850638415134,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM109,Southern,0.2696408676295992,56.43198612502363,47.78156611965008,25.450343697475468,24.08640241276398,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM109,Southern,0.2131727135176078,46.244774738778446,46.096605448237234,29.19940502667206,16.27612055190194,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM110,Western,0.4627729878378975,84.6224887629845,54.686761711069366,10.378561936293131,59.998638738266465,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00 -ZMB,ZM110,Western,0.3690884800688325,71.51766912966666,51.608013035163204,22.131966866707508,40.77072429771442,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00 -ZMB,ZM110,Western,0.339286515904383,67.7855490600704,50.05292729925566,21.68002534836981,37.66257306141859,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZWE,,,0.1564414561942662,36.094195066416404,43.342552980167746,27.23914917277122,10.54200596593255,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,,,0.1300269344256375,30.208413297123982,43.04328504338121,27.70631489216841,7.823246298979281,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,,,0.1099417854663903,25.80003834890267,42.613031802360254,26.33033295076744,6.7701579210495995,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW10,Bulawayo,0.0236491586772352,5.76220988634951,41.041821009087734,7.9244163893096795,1.56220724491931,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW10,Bulawayo,0.0065725869303399,1.71392499788081,38.34815956629714,7.4996992200118004,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW10,Bulawayo,0.0153449756384244,3.8109419784243195,40.26557141331489,10.52394304909561,0.39473238981174996,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW11,Manicaland,0.1732881722098126,40.29934014495911,43.000250521841,29.37947638860754,10.70682571602061,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW11,Manicaland,0.1608768836282034,37.37212522307501,43.04729331498433,26.28163489868964,9.83240922235235,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW11,Manicaland,0.138569629101687,31.847586110742622,43.510245523740224,29.53625350034737,9.58885001106254,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW12,Mashonaland Central,0.1932745366209388,43.28150484785853,44.65522566748314,35.04976372976969,13.27989600642599,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW12,Mashonaland Central,0.178548406510757,41.830567604328174,42.68371593702275,33.77691292975647,10.59031269726153,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW12,Mashonaland Central,0.1530712960514438,35.29759701134944,43.36592544875674,32.32525212899885,10.57562787123897,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW13,Mashonaland East,0.1456958912023676,35.3854228328658,41.17398621758054,31.02499218781962,7.4406360985970394,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW13,Mashonaland East,0.1084629908159635,26.24421762544796,41.32833844160446,30.77035357779674,5.0409012056483,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW13,Mashonaland East,0.0999352182693455,24.10051946421255,41.46600176719916,28.74578266012275,5.09872933421623,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW14,Mashonaland West,0.1694981743024403,38.46616854152998,44.0642207760936,30.606409231667957,11.24797196341555,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW14,Mashonaland West,0.1483980005944069,34.06088454758913,43.568451778481645,30.129842473435442,10.38463800111801,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW14,Mashonaland West,0.1204353121012288,28.620267709164498,42.08042822138389,29.8407133070437,7.083568073729481,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW15,Matabeleland North,0.2641675457153193,59.42317885607301,44.45530360385988,24.1140439649711,22.89681243147797,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW15,Matabeleland North,0.1810546609273066,42.510313812457525,42.59076085066421,38.52973701109416,10.07838936739472,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW15,Matabeleland North,0.1913336644300788,44.10439148546614,43.38199847811745,32.58258194983186,13.635977151948051,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW16,Matabeleland South,0.1909967917220889,44.65347056435747,42.77311243855324,32.6295099690838,12.658120396674791,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW16,Matabeleland South,0.1454846353057672,33.843096246843544,42.98798024998562,34.37594469333836,9.218471417950171,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW16,Matabeleland South,0.1135814981680191,27.68559220361543,41.025489840591725,30.528058677508792,5.01037257283731,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW17,Midlands,0.1866462190486448,42.4615851557379,43.95648875661982,26.14952239978398,13.938670007540372,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW17,Midlands,0.1526073362482609,35.53569101147936,42.94480616655605,31.212708658688893,8.50334812306535,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW17,Midlands,0.1300539367149738,30.346539609841074,42.85626578418802,24.96371908851165,8.3080905488073,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW18,Masvingo,0.2139422757310202,50.00896652311363,42.7807832485677,30.7804422498814,14.44360221680648,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW18,Masvingo,0.1603534750756307,35.69270530256261,44.92611969766211,34.09061830400415,11.09876627582493,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW18,Masvingo,0.132369346963558,31.086229570430802,42.58134511412978,29.94573249981332,7.956651094527489,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW19,Harare,0.0253569441555509,5.98036240286392,42.4003470816548,17.37106162060145,1.28706943027678,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00 -ZWE,ZW19,Harare,0.0314506531846843,7.7485123126901,40.58927948423864,11.84637600138581,1.2450137757329198,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -ZWE,ZW19,Harare,0.0187693923042409,4.63092200327702,40.53057315791308,13.80248135117051,0.60007818870627,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 diff --git a/tests/fixtures/input/download-global-mpi.csv b/tests/fixtures/input/download-global-mpi.csv deleted file mode 100644 index fca44bb4..00000000 --- a/tests/fixtures/input/download-global-mpi.csv +++ /dev/null @@ -1,1473 +0,0 @@ -Country ISO3,Admin 1 PCode,Admin 1 Name,MPI,Headcount Ratio,Intensity of Deprivation,Vulnerable to Poverty,In Severe Poverty,Start Date,End Date -#country+code,#adm1+code,#adm1+name,#indicator+mpi,#indicator+headcount_ratio,#indicator+intensity_of_deprivation,#indicator+vulnerable_to_poverty,#indicator+in_severe_poverty,#date+start,#date+end -AFG,,,0.3603053189049837,64.8828500219939,55.53167266586595,19.89607719037991,39.10508275614888,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF01,Kabul,0.1268307691999727,27.90875807467631,45.44479150975038,34.61702284538088,7.737068424870571,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF02,Kapisa,0.4198956230449855,76.74376181576461,54.71397454466861,17.6739238581791,44.933400674549226,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF03,Parwan,0.3020980627775742,57.72823364613653,52.33107678807215,27.82191572541362,29.04274034027407,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF04,Wardak,0.339293520643219,64.78695314077802,52.37065554016025,24.89745315844208,35.228018250029656,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF05,Logar,0.3332573233972329,63.43326761835911,52.536679239393344,26.03850752144717,28.602795661532422,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF06,Nangarhar,0.3595530067421747,68.36566139521567,52.59263194480507,19.81204968112919,37.80426577766767,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF07,Laghman,0.3873294964439733,71.64486322937037,54.06242387593673,19.34226128054862,43.151655948016945,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF08,Panjsher,0.1970313912824444,42.49866191847337,46.36178702765195,38.51133004310121,13.589475679369208,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF09,Baghlan,0.4124614795338362,76.42335601318415,53.97060546028366,15.78509899022105,48.45892180546387,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF10,Bamyan,0.2428158295332319,49.912458179461986,48.64834119373145,32.34724022760418,19.91311661802868,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF11,Ghazni,0.334858802296385,61.6483827008735,54.317532370827394,23.497141270896442,35.20390323865341,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF12,Paktika,0.4900533036011164,87.56502514079638,55.964502130063565,10.8362019276875,48.82944139699872,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF13,Paktya,0.3422357799396081,66.6151702508694,51.375051456112054,24.54522173607507,30.137851547749328,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF14,Khost,0.349025030001025,70.38456036593533,49.5882943910446,18.856493966552122,32.25256996376681,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF15,Kunarha,0.371547202359427,68.63380046694336,54.1347265970473,22.07030600809908,39.12153344607645,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF16,Nooristan,0.5309818190783622,89.74140001793002,59.1679892415623,8.510516953525011,64.93682455541254,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF17,Badakhshan,0.4281842976127924,80.42994046920118,53.23692832730064,14.62529682902239,44.563107960258755,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF18,Takhar,0.3389194493332424,64.38511767350123,52.63940823280201,24.219828038264758,33.03238787451496,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF19,Kunduz,0.3818472867331132,67.53405915859233,56.54143871855967,19.39751567546404,42.51816702856487,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF20,Samangan,0.490653123042456,83.48841988983021,58.769003376745246,12.69415363102813,61.38907251881446,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF21,Balkh,0.2237808269284938,42.993169428365405,52.050320993746254,24.39946211875792,23.525203067458108,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF22,Sar-e-Pul,0.4086025636386787,72.31217819468695,56.50535965582356,17.44122398869505,46.43989487750588,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF23,Ghor,0.5275028748405027,88.89890285331349,59.33738864144391,10.1340495612346,65.98942368631002,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF24,Daykundi,0.2931312281297664,56.84729146917571,51.5646780266938,26.36459398224651,28.351831261412418,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF25,Urozgan,0.5152593041181568,87.6665817009949,58.77488252884723,10.18068605304687,63.22575835137264,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF26,Zabul,0.5622384335578846,91.09488981761463,61.72008492282819,7.45943597078992,70.80368443360659,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF27,Kandahar,0.4996096791596873,82.56859588019707,60.508438327399524,8.40618727596661,60.696312178088405,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF28,Jawzjan,0.3198981875846903,59.38920218937033,53.86470533223404,23.80657595250029,30.87690928414744,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF29,Faryab,0.4672827134803736,77.31289524756616,60.44046235548056,13.14244098901278,55.77670294744088,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF30,Helmand,0.5436240651443973,87.8164510738984,61.90458148746324,8.15972390468776,64.16734210998972,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF31,Badghis,0.5477162878759554,88.7361532813988,61.724141471294715,8.26347914054513,72.09342447894811,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF32,Herat,0.2887131422979692,52.484670322038674,55.009041788100255,21.59671915123073,30.888304579722032,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF33,Farah,0.4910235032065252,81.76157463491208,60.055534081759085,11.07423680550195,57.14229185203057,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AFG,AF34,Nimroz,0.3365653148391782,64.38242643164995,52.275959992977995,16.023805336986342,33.881449975182385,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -AGO,,,0.2824350475858491,51.104111845344356,55.266599376695645,15.54285581687768,32.45755227739233,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO01,Bengo,0.3324211514896016,62.627642400028286,53.078982179513034,17.40998996010377,38.349573919558885,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO02,Benguela,0.3222648426983249,59.58395571591638,54.085842208062715,12.45192951055555,35.15280245037323,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO03,Bié,0.4751389644917893,80.82647209470439,58.785067834591274,10.36171726901636,57.92181703014868,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO04,Cabinda,0.1539982214622631,31.03899197549528,49.61444030909311,15.49858290118699,14.080609717482881,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO05,Cuando Cubango,0.419756668197174,74.72625005295993,56.17258565760819,10.71602709289404,50.48984413270261,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO06,Cuanza Norte,0.3301435288905762,62.570604127188325,52.76335964720557,17.8689245992076,37.32167596564914,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO07,Cuanza Sul,0.4597669172277966,76.81162632090223,59.85642268619474,12.25948502389532,54.736070276804874,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO08,Cunene,0.4196989413955159,71.87871651717909,58.38987696659933,14.324550901948928,50.75979687072281,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO09,Huíla,0.4022075662895738,68.71734552882867,58.53071931028499,10.86758370867658,48.14582746364849,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO10,Huambo,0.3759138723307349,66.49646677958451,56.531405431926885,12.942340794875731,45.44943801681535,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO11,Luanda,0.0743419606819074,16.0407287275899,46.34575021148505,20.73536288092571,6.02509715075105,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO12,Lunda Norte,0.4315113750082425,76.18905793020933,56.63692224722286,12.09536250979286,51.74806835347414,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO13,Lunda Sul,0.3549840554504072,67.83449814925343,52.33090317397951,16.26505351055793,43.3335241322072,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO14,Malanje,0.3394090717157708,61.32795650685857,55.343287311034594,15.20256574635269,39.81555034792085,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO15,Moxico,0.4248080042591962,75.93111151955041,55.94650147453968,12.32044972754352,51.10828955367612,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO16,Namibe,0.2750002838088794,50.03132036263344,54.965625895067724,15.70469749538339,31.942007736495242,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO17,Uíge,0.3914613170180237,73.1818664777376,53.49157323516868,12.3314378909133,47.932148099871206,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -AGO,AO18,Zaire,0.2160558096280178,46.37795359862792,46.58588679825018,24.36879793054589,21.048335384088222,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -ALB,,,0.0027478785548485,0.70356129613728,39.056704368687726,5.0403203363190405,0.067062041361,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL01,Berat,0.0016438462003434,0.46675521742856996,35.21859293613406,2.48314768681451,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL02,Dibër,0.0074819459502361,1.75345256823252,42.66979378733852,11.687689128278219,0.50381621601239,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL03,Durrës,0.0040892401989201,1.1524359012902199,35.483450266881924,1.4434471678185699,0.10857501405686001,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL04,Elbasan,0.0018708153111054,0.46193959814228,40.49913275737829,4.724233171571139,0.09905877698868,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL05,Fier,0.0035516600111089,0.8362558246404901,42.47097486747871,4.33488070269589,0.14852928856501,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL06,Gjirokastër,0.0016423757946214,0.44042971895192007,37.29030362732365,3.15858657748109,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL07,Korçë,0.0002746177086545,0.08238531259632,33.33333333335,7.24579232712024,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL08,Kukes,0.0086888145950759,2.03037145768025,42.794211680867086,14.12719540253218,0.2856628816803,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL09,Lezhë,0.0024105835221195,0.72317505663559,33.33333333334523,7.641935332196111,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL10,Shkodër,0.002682706407069,0.6225494631449999,43.09226119185002,4.53455214790089,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL11,Tirane,0.0025415935401318,0.67877120601105,37.44403883995086,4.31477644238849,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ALB,AL12,Vlorë,0.0004861018104819,0.12499760840959,38.8888888889,5.065998447850769,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -ARG,,,0.0014692951081311,0.43232333482193996,33.98602364908878,1.64745928192631,0.00512135609769,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -ARG,,AMBA,0.0011301247451812,0.3368664312942,33.54815559506465,1.29953610495756,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -ARG,,NEA,0.0028598603528915,0.80791653878005,35.39796768128838,2.63200559374153,0.056050394603589994,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -ARG,,NOA,0.0026672271356129,0.78279034438479,34.073326973765425,1.4751643101501901,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -ARG,,Pampeana,0.0008549840587574,0.25649521762717,33.33333333334,1.9067169285855698,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -ARG,,Patagónica,0.0009856849634647,0.2912682394523,33.84114125584637,1.5170603665249,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -ARG,AR022,Cuyo,0.0019125724258503,0.56628953872939,33.773755209069016,2.21024100841424,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -ARM,,,0.0006900690078574,0.19055338255055,36.213946906679,2.77635993789872,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BDI,,,0.4088610942404922,75.09747264803713,54.444055149062166,15.761258464600362,46.06844864667757,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI001,Bubanza,0.4415454674060592,78.61042716355242,56.16881670002945,14.757839171855549,52.46707060553809,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI002,Bujumbura Rural,0.3428548039974757,69.09907492641784,49.61785731032936,21.58363809548879,33.70146721890418,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI003,Bururi,0.2898306324237529,60.36934841788134,48.00956777229441,26.45996640394165,22.78734626712174,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI004,Cankuzo,0.4612318345507052,81.76134402861169,56.411968275533816,12.93561478405988,55.39356122474132,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI005,Cibitoke,0.4278914385232545,77.49361051956447,55.21635082614025,16.16018032158707,49.2177034582579,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI006,Gitega,0.3932327660305846,75.9784173966197,51.75585113570419,17.24768280467266,41.74730554247629,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI007,Karusi,0.4649342830160137,82.70056620197748,56.2189963585638,14.002572861160509,54.7209023388676,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI008,Kayanza,0.4171035367558941,77.97834528110589,53.489662450808375,15.177791765307031,45.67950652166946,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI009,Kirundo,0.5429764623912949,90.10218209779053,60.26229884221749,8.69484780027593,68.01477746527702,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI010,Makamba,0.38366501928895,74.05447156776549,51.80848788285084,15.43893737997783,41.03837481803581,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI011,Muramvya,0.3670886589688132,77.51422261126717,47.3575876274678,13.50343420305626,29.43136071109313,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI012,Muyinga,0.5327369382500952,89.35499644898252,59.62027412247313,7.158847247482029,67.03621013409973,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI013,Mwaro,0.3320679035446345,68.06830030619184,48.78451526641512,23.491735026690037,31.594025981998342,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI014,Ngozi,0.4709125785932758,82.47930364673007,57.094635596131795,12.43070580344343,56.149341583140874,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI015,Rutana,0.4068092692595359,73.76253829196712,55.15120258596606,17.62416017849807,45.35478221804703,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI016,Ruyigi,0.4622418811605603,82.9793963600475,55.7056210863349,11.91604046920184,55.99427067041509,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI017,Bujumbura Mairie,0.1136647058953909,24.26807750869031,46.837128262297654,29.74032562667955,9.63872848940996,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BDI,BDI018,Rumonge,0.3838923864324056,73.77655827732981,52.034466691890756,14.74523955047293,43.52234763944558,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -BEN,,,0.2895098005186729,55.92332799756329,51.769057902149115,17.84124037385078,30.78320544265113,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ01,Alibori,0.4596474702614589,80.27002253149456,57.262656190374514,10.17787159849805,56.56994983495218,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ02,Atacora,0.4135529020880452,78.67509561608269,52.56465198416706,10.30780807315492,45.84627131765462,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ03,Atlantique,0.2204456265459868,44.21602793281514,49.856497033371475,18.05132271496658,20.8516022937584,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ04,Borgou,0.3813998037295351,67.66723503244197,56.3640295848765,13.521439966047142,47.20309100363569,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ05,Collines,0.2330225418079487,48.71841075322336,47.8304891734448,22.62225790940973,21.93439764850765,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ06,Couffo,0.3529807831591447,66.9385809212972,52.73203857938976,18.62776044192011,36.93441983534026,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ07,Donga,0.3440956201488796,66.14308989785965,52.02291285155313,17.78282215617967,38.93681052373605,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ08,Littoral,0.0769632563070825,17.632115377504,43.6494740757404,15.422300065674879,4.74912363442205,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ09,Mono,0.2654286952094065,54.75686365469775,48.474050099586854,23.45587966594524,23.863227694525722,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ10,Ouémé,0.1674507518766185,36.587285277190276,45.76747102387857,24.25399058858546,13.97175351520514,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ11,Plateau,0.3515987663164415,67.85446513618514,51.81659977877305,16.43029769467733,38.32362046684041,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BEN,BJ12,Zou,0.2512302996292836,51.24423165968286,49.02606429885115,22.626443159122182,24.69622463152571,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -BFA,,,0.3428919647288916,64.47461554263327,53.182475280082485,15.8099885551926,38.33152154492104,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF13,Centre,0.0882857812471183,20.60484815417557,42.84709141582642,25.91439807297752,6.2118415931252,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF46,Boucle du Mouhoun,0.3954341890517827,73.59225015433653,53.73312926598713,13.7657049044999,44.35706982009432,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF47,Cascades,0.3076118342430068,60.650285480163326,50.71894250911916,16.67649754264355,32.1099934861311,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF48,Centre-Est,0.3702275212680424,74.90767833811573,49.424508873031954,11.8370309266648,39.8948280403039,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF49,Centre-Nord,0.454231632112449,82.96278529139606,54.751251481856485,9.63956323907542,51.78930286583202,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF50,Centre-Ouest,0.3768677608766506,71.34366518168403,52.82427807947884,17.02069779751675,43.24861156616367,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF51,Centre-Sud,0.3404178618939414,68.94137920727724,49.37787230372206,17.959688407416998,36.976712002770064,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF52,Est,0.5276079124445916,85.56204069474637,61.66378316371637,8.07860551077621,66.86868734528247,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF53,Hauts-Bassins,0.2708816161891121,54.373470124395155,49.81871040590043,19.69180846215551,27.14099133200773,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF54,Nord,0.3948309973983491,74.1038317107148,53.28078026244084,14.91809116514395,44.930958768924924,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF55,Plateau Central,0.3705577419196432,72.10971926452817,51.38804390019669,14.98704426042194,41.24605545860181,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF56,Sahel,0.6137677418598311,88.11192009165737,69.65774224660709,6.52767674130222,80.33939595552505,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BFA,BF57,Sud-Ouest,0.4739394538087101,86.0119570402776,55.101577747704766,7.14364918651665,55.2131807097109,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -BGD,,,0.1040602663094325,24.64057321381417,42.23126848814277,18.20632006636257,6.47989383488691,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD10,Barishal,0.1253279011895154,29.448082100204992,42.55893499721091,23.04819124875387,7.52550459498927,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD20,Chattogram,0.1137960486647921,25.79739397585862,44.11145124630926,19.32951038257835,8.43796620594636,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD30,Dhaka,0.078994821248515,19.04302947959727,41.482276406256766,17.08569258189171,4.74385572829868,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD40,Khulna,0.0626957981162193,15.924196156061779,39.37140531414089,17.51123834719852,2.39352824698504,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD45,Mymensingh,0.1632923300152708,37.667071967598496,43.351479551088055,18.74064871919841,11.55325273938752,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD50,Rajshahi,0.0966006754939713,24.02573656597539,40.20716502434921,17.04325335370806,4.50155034731173,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD55,Rangpur,0.1051682163422867,25.95129719529873,40.52522521353527,17.505052506895797,4.96207389477372,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BGD,BD60,Sylhet,0.1603030648646664,35.73094060161723,44.86393645551297,18.88525275498959,13.280996906184619,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -BIH,,,0.0083074962435722,2.19013349417353,37.93146064234383,4.0741876038620495,0.06203161518297,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -BLZ,,,0.0171088313258261,4.30354342909592,39.75521940862637,8.3647672889203,0.63023951442479,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,,Belize (ex. Belize City South Side),0.0033906852576389,0.98317573359759,34.487072267659606,3.35006332242438,0.06805968738765,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,,Belize City South Side,0.0022175017952749,0.57146148368545,38.80404644200773,5.86007014443079,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ02,Cayo,0.0140687703086673,3.65964638894558,38.4429773083099,6.5979478813723995,0.3437590411443,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ03,Corozal,0.0086257158736317,2.25782185796173,38.20370434990201,10.536300931833791,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ04,Orange Walk,0.0149355589406634,4.17165586886165,35.80247127320922,7.8072081235615505,0.20461128542322,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ05,Stann Creek,0.0171331276025568,4.45209992564007,38.48325035088608,10.17076284840778,0.27460798038336004,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BLZ,BZ06,Toledo,0.0770107229118572,17.98569269575522,42.81776866455214,19.30068231011193,4.7203693629574595,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BOL,,,0.0377542701563952,9.06021729850495,41.67038042523009,12.130202181249269,1.9144868329122398,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO01,Chuquisaca,0.0938953995530628,20.849191271058938,45.035511609220244,15.08566079458245,7.1859364399229895,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO02,La Paz,0.0292410249468401,7.56598655423113,38.64800014809383,11.77794015552019,0.80675151681061,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO03,Cochabamba,0.0349456482347122,8.246906706194219,42.374249497044396,11.44736280131325,1.96213990100539,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO04,Oruro,0.0276120364353525,7.08546313622342,38.96998107885122,14.357901815487658,0.78129791614999,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO05,Potosi,0.1060928561303071,25.598024483416857,41.44572023479278,15.10117315217297,6.17767594296429,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO06,Tarija,0.0194270362302109,5.084961884677179,38.20488072634633,10.614764584295159,0.48153835182258004,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO07,Santa Cruz,0.0200383641759322,4.60770970223958,43.48877310172685,10.366930254950999,0.9095731157307999,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO08,Beni,0.0407711417240621,9.03583622470759,45.12160325856442,17.65691285265374,2.8858188256388697,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BOL,BO09,Pando,0.0598010284674643,15.641888977207142,38.23133417875836,15.211711995217838,1.9147455767603598,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -BRA,,,0.0163460407771117,3.8419268663955597,42.54646521277315,6.21079550584403,0.93878356709898,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR11,Rondônia,0.0237822646521097,5.62753952503934,42.26050220756727,13.400397577968109,0.8385475708302099,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR12,Acre,0.0678992058225879,14.38441842127296,47.20330279197978,9.81059124473431,5.3434837864755895,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR13,Amazonas,0.0317918995014062,7.366834375572889,43.155442189419155,8.26118285702646,1.4330454443607,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR14,Roraima,0.0307251248913844,7.24064698599942,42.43422576849115,5.82307529717271,1.28934204301833,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR15,Pará,0.0439348921996234,10.1518487789508,43.27772522648244,12.01421958152735,2.29678471154303,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR16,Amapá,0.0268816738235108,6.18083088113867,43.49200672282194,11.31138992950943,1.2981136197254,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR17,Tocantins,0.0239300779474741,5.9279357053298005,40.368315611045915,10.46300145672171,1.1757209512651299,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR21,Maranhão,0.060373497750709,13.9546490477031,43.26407460648126,12.67881357149084,3.9029139140662203,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR22,Piauí,0.0375354807272691,9.03179966684398,41.55924855714307,14.074312022836418,1.5288901708985498,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR23,Ceará,0.0258278907076106,6.10177129466356,42.32851324696308,10.22473180999094,1.48315334188558,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR24,Rio Grande do Norte,0.0203768458001392,4.86442354766495,41.889538607140146,10.85823199299201,0.94424840598701,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR25,Paraíba,0.0256722331520068,5.85548217688328,43.84307282730292,9.303155903552799,2.00069898028891,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR26,Pernambuco,0.0249089514035287,5.61347844237945,44.37346942579554,9.778394940341629,1.6380402190373102,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR27,Alagoas,0.0315460247474732,7.06948380898247,44.62281207489423,13.78028549162494,2.26826863395556,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR28,Sergipe,0.0284073524335401,6.25890911035931,45.38706655209657,10.90024916536289,2.36983449892801,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR29,Bahia,0.0276990154313026,6.53236064976107,42.402765120317895,9.56755664510532,1.70723964941462,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR31,Minas Gerais,0.0109362561538824,2.77215874386478,39.4503243296802,4.31635532702698,0.5115738579608,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR32,Espírito Santo,0.0105237791817615,2.53585268973176,41.49996261365925,5.23848517689789,0.65690558271684,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR33,Rio de Janeiro,0.0031665388486853,0.74182686593166,42.68568575914916,2.58561175144442,0.20224108087738002,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR35,São Paulo,0.0025220322917264,0.5772159121881201,43.69304862310227,1.1501124326836598,0.16381225362729002,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR41,Paraná,0.0098864167166228,2.32661770066554,42.49265667408422,5.31104467844206,0.6537460069606,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR42,Santa Catarina,0.0115140410681338,2.98639951251593,38.55492548762735,5.4453195845076,0.31651711598628,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR43,Rio Grande do Sul,0.0100615433881864,2.5147500386303703,40.01011326623257,6.62799211860487,0.54742585660889,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR50,Mato Grosso do Sul,0.013764225724612,3.2823188781899404,41.93445620433549,9.48428301140941,0.6662784066048499,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR51,Mato Grosso,0.0181695238713151,4.4495009668757195,40.83497004850205,7.984806282558569,0.51065282453884,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR52,Goiás,0.0129101496987562,3.0169661303449598,42.7918284163171,6.682465685234081,0.6282247634346401,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRA,BR53,Distrito Federal,0.0030909352954438,0.67876219225002,45.537823566714806,1.29088564394482,0.27814132760551,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -BRB,,,0.0085288617206525,2.491336892443,34.2340762765694,0.4917953672608,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -BRB,,Christ Church & St. Philip,0.0089174636231418,2.66703091885037,33.43592142150983,0.27409848334741,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -BRB,,"St. James, St. George, & St.Thomas",0.0078157578548804,2.24619738662083,34.79550773869592,1.2246090218452301,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -BRB,,"St. Lucy, St. Peter, St. Andrew, St. Joseph, & St. John",0.0057031520456197,1.66181491116415,34.31881617685377,0.47470710935052,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -BRB,BB08,St Michael,0.010772211358202,3.11645730856322,34.565566897395925,0.24641863452547,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -BTN,,,0.0386035001508506,9.79341013142581,39.41783263725155,8.34133817910704,1.61827499727525,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,,Gelephu Thromde,0.0122681131721121,3.3855072761271696,36.23714903412092,1.39492377175322,0.38744311500295,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,,Phuentshogling Thromde,0.0192420372335169,5.1938627858513,37.04764262532031,3.38998423072243,0.66120852005885,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,,Samdrup Jongkhar Thromde,0.0216687471512806,6.16746477901703,35.13396172930266,4.648655867983139,0.08033320019954,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,,Thimphu Thromde,0.0101637251404243,2.83942637449617,35.79499448098118,1.30130710426697,0.10616087109177,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,,Trashi Yangtse,0.0447394035759456,10.76309013433872,41.567433717950934,17.37769638695189,2.22636183533007,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT001,Bumthang,0.0312693999713951,8.10951434986182,38.55890577704926,7.80441578902264,0.60609044668672,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT002,Chhukha,0.0598210389641492,15.3637623521244,38.93645162760372,7.99255313844146,2.01681579181065,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT003,Dagana,0.0428018731317503,10.38530338757754,41.21388806315291,11.76443197322766,1.90245812621916,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT004,Gasa,0.0800742269293934,19.07300403737252,41.98301786781587,19.60186723063261,4.39974419280341,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT005,Haa,0.0361797373219765,8.71273759064586,41.52510843528641,7.68822676494094,3.15709265396713,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT006,Lhuentse,0.0708279586735431,15.936437638171999,44.444034659221046,15.740766149526769,4.78072618632751,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT007,Monggar,0.0565498878037554,13.863464335807091,40.79058915865363,15.773263029672849,2.20688097135612,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT008,Paro,0.0455141658251471,12.51299201556844,36.37352742535054,3.40495670654791,1.86302104553865,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT009,Pema Gatshel,0.061499366083834,15.30954744324731,40.1705970158902,13.93700527877361,2.75611493489436,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT010,Punakha,0.0222618257580188,6.233612351836601,35.71256039278697,5.39145504540008,0.44201248507496005,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT011,Samdrup Jongkhar,0.0776024204464052,19.05523829055186,40.72498032464016,12.658407103600618,4.161377146181651,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT012,Samtse,0.0468299199386678,12.08988026477856,38.73480871030421,13.520666594363838,1.6911218330310702,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT013,Sarpang,0.0339562290672224,8.56589323691581,39.64120043066101,4.90048250617839,1.57600495964377,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT014,Thimphu,0.0404375481125161,10.34900462944901,39.07385256882329,5.09225258238106,1.83278902257294,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT015,Trashigang,0.0494016736270602,12.508852415942451,39.49336996261789,13.47368057869081,2.24975494611471,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT017,Trongsa,0.0289339766278312,7.1530997294693295,40.44956413599134,12.80129340835146,0.98138144466866,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT018,Tsirang,0.0538744942985442,13.188847656086999,40.84852270901747,10.449212107069041,2.72121180195969,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT019,Wangdue Phodrang,0.0310839750082336,7.927598522401221,39.20982491784725,10.786850308583611,1.4167336064266,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BTN,BT020,Zhemgang,0.0576321990035689,13.53958099800829,42.5657182537974,12.56071461465397,3.06937857406222,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -BWA,,,0.0726386986814453,17.21929557946103,42.18447749284699,19.67775231439858,3.50450997973626,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Barolong,0.0836548536463302,20.17544912893223,41.46368842236406,22.966123654104507,4.1802310065996,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Central Bobonong,0.0761880588490601,19.782793992684518,38.512284400895865,29.21239973557659,1.6505180041917402,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Central Boteti,0.1300792249717886,31.197798133871157,41.69500181186274,22.04161422685521,6.66314599206822,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Central Mahalapye,0.0989267397773095,25.25942473749711,39.16428850038485,24.27445982266646,1.8573918365700202,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Central Serowe,0.0991634999873772,22.615516737263082,43.84754995404891,20.56733558568556,5.95472129054575,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Central Tutume,0.1344678385460168,30.747927581165442,43.73232576116277,24.31432372876265,7.13357260252268,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Kgalagadi North,0.0943086564001582,24.55934674371838,38.40031145139471,14.30109946211087,2.2978705487310602,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Kgalagadi South,0.1133810110183465,28.90829786867675,39.22092249547464,19.0802722025527,3.91795599954258,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Kweneng East,0.0409244000689929,10.26351414554095,39.87367239784315,20.865054094881998,1.6243342635782199,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Kweneng West,0.2064382109858987,45.85262925311715,45.02210982194977,23.1048406526914,14.00771144678162,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Ngamiland East,0.0563749570206185,13.265071141069521,42.49879734612053,32.09245940271325,2.21492664993144,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Ngamiland West,0.1446165360203084,34.606053596779304,41.78937526518989,43.73110280735569,5.937529410361201,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Ngwaketse,0.1003977983818742,23.26069486313466,43.16199450300703,25.01169279303212,4.88051965032556,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,,Ngwaketse West,0.0989281647859591,22.2576120445177,44.44689061346376,24.31643197089325,6.251339879089319,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW01,Gaborone,0.0042174931076806,1.2522938261535501,33.67814341650729,4.94756767998514,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW02,Francistown,0.025329497431853,6.83410508489516,37.0633713078785,11.39144847766568,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW03,Lobatse,0.0093978473655697,2.75991536770113,34.051215756654166,20.34063300751926,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW04,Selibe Phikwe,0.0285058745490852,5.81867598759767,48.99031087114075,12.560661269169149,1.5020308765935801,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW05,Orapa,0,0,,10.3566648855074,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW06,Jwaneng,0,0,,8.470913760724889,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW07,Sowa Town,0.0126396341689177,2.8439176880055,44.44444444445999,19.30348117641219,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW09,South East,0.0213511201880593,5.43162222374938,39.30891970855977,9.281471167372379,0.6015369344054601,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW11,Kgatleng,0.031057692260248,7.64321696214789,40.63431983424978,14.176813422592149,2.02338381168568,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW13,North East,0.0953564140851302,22.61387856228053,42.16720887684553,17.79552237196637,5.11353412013903,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW15,Chobe,0.0429461417774678,10.45648418481111,41.0713018051044,12.12120350654756,1.15627751039295,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -BWA,BW16,Ghanzi,0.1920170910713729,39.96509002934398,48.046205058060956,16.951981963102337,18.10205855690502,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -CAF,,,0.4613475237518246,80.41417780205252,57.37141588234322,12.902056776607429,55.8151765706502,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Bamingui-Bangoran, Haute-Kotto, Vakaga",0.4854396263044615,87.02395670443,55.782297735923315,11.6842937532595,58.650634593930505,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Basse-Kotto, Mbomou, Haut-Mbomou",0.5588156134090397,93.53455834699396,59.74429379737368,5.92583275725136,70.93068020401581,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Kémo, Nana-Grébizi, Ouaka",0.5090457658345517,87.93921370954874,57.88609476494305,11.18638507017469,62.284032335321825,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Mambéré-Kadéï, Sangha-Mbaéré, Nana-Mambéré",0.5212705290797184,88.45085242703593,58.93335279156524,9.468952335004351,63.68614483289249,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,,"Ombella-M'Poko, Lobaye",0.4047309545079891,74.81942533236996,54.09436823526173,17.732276859470538,44.93769150304525,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,CF31,"Ouham, Ouham-Pendé",0.5559113327724635,92.56360113608596,60.057228321872316,6.39081992992023,73.21618128329777,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CAF,CF71,Bangui,0.1419042651889826,33.827461140413476,41.949428187931694,31.116389785566152,6.94192228182345,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -CHN,,,0.016066725408367,3.88502009595822,41.35557863672826,17.44644650512501,0.32077922054574,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CHN,,Central Region,0.011727661192111,2.93818777079841,39.9146075981527,18.38800957697397,0.03685878040406,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CHN,,East/Coastal Region,0.0084555022620832,2.14650840810506,39.391889778562486,12.18635302444258,0.09173093500429999,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CHN,,Western Region,0.0325262057642511,7.5907398786516795,42.849849005797594,24.02790629594797,1.00265533536644,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -CIV,,,0.2102151008803952,42.773385847403475,49.14623818426481,19.60583343951893,19.73355055340048,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Bas-Sassandra,0.2267013641797817,47.785426516017296,47.44152782727452,22.48738738719528,19.97215950275667,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Denguélé,0.3633334105931665,66.12222944085055,54.948753795149265,16.70134220440831,42.567939363786124,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Lacs,0.2034261972404297,43.513700436812144,46.749919036610635,18.91607417953999,16.90405108053028,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Lagunes,0.1819158537976507,37.164560941262806,48.94874288577279,22.64842422295635,15.77258039432626,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Montagnes,0.2862181952163975,58.219940238203016,49.1615405384057,16.61827304133897,26.21691508215841,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Sassandra-Marahoué,0.2925704297094157,58.21682523170379,50.255304810075316,21.85329743673412,30.61835192518692,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Savanes,0.3183063912523234,60.42559901700106,52.67740766008231,16.241401043552912,35.656342884370176,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Vallée du Bandama,0.2146849665195155,44.43458894627426,48.31483121833097,19.99275502608497,18.8127347387011,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Woroba,0.3938778505826238,73.3773118656829,53.678424647610015,15.2871257753987,43.403689402621296,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,,Zanzan,0.3115166328493677,57.31513652724579,54.35154685556453,18.4344135477279,35.80239886566377,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,CI01,Abidjan,0.0615169832485625,15.338207545834,40.10702232626332,18.71298007156517,2.44906789969804,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,CI02,Yamoussoukro,0.0962810461802304,23.42918813855918,41.09448676190934,20.237500924226808,4.40295551650105,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,CI22,Goh-Djiboua,0.1971314149628212,41.48227536590879,47.521842334817734,21.169188227332338,16.68603433112496,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CIV,CI30,Comoé,0.1325585272131289,28.390784454206152,46.69068846158284,23.83935444320501,10.91406725709977,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -CMR,,,0.2320601127657026,43.591636255226405,53.23500852480155,17.58638168654292,24.559452660919888,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,,Douala,0.008686437615227,2.35971455503867,36.81139143155668,14.455091029470859,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,,Yaoundé,0.005410187996434,1.37512897984175,39.34313126799615,15.016862458369559,0.09026786557438,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM001,Adamaoua,0.3877950630843354,67.78560641163527,57.20905714546668,15.715425752335099,45.00607249927476,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM002,Centre,0.1984643041624463,43.761273071672626,45.35158377074623,20.18352124528088,15.81444566735427,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM003,Est,0.3037461758840502,58.22993769171957,52.16323216626822,15.082172884938519,34.56289704650427,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM004,Extrême-Nord,0.4375588567415855,76.28725623507917,57.356743227630034,15.0243211968929,50.44955979497876,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM005,Littoral,0.0943333199883053,22.44250671023699,42.03332595876012,20.62269883103356,5.924925687504571,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM006,Nord,0.4257210416218979,72.72996192660891,58.53447882338902,14.33373851559965,51.96157981886142,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM007,Nord-Ouest,0.2276537091110539,48.121914250074674,47.30770017335723,19.534406461534452,19.81383222513788,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM008,Ouest,0.0994767756644829,23.60582442442383,42.140775884768075,28.59575800224201,5.74397215115153,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM009,Sud,0.136945512922363,34.50023429384023,39.69408200419486,20.32904413917088,5.410817509229339,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CMR,CM010,Sud-Ouest,0.034279932939957,8.97674865477951,38.187471052456466,14.92865267220772,1.31587646116532,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -COD,,,0.3311887359526685,64.51797963714816,51.33278162386483,17.42191020825332,36.77546141888496,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD10,Kinshasa,0.0683708776256192,16.20279242147945,42.19697188429226,17.86289188494247,3.2800524397324,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD20,Kongo Central,0.2760330649377045,54.20690075052187,50.92212635584909,22.30760645100232,30.758537719313438,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD31,Kwango,0.4809310652467551,90.17233945465523,53.33465541155222,9.33217537764119,64.27609561044679,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD32,Kwilu,0.4261807978540423,86.46276664351765,49.29067324564892,11.27782117938779,52.923369702126635,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD33,Mai-Ndombe,0.3598575017707394,75.99328968047713,47.35385233141021,23.53266066782896,35.87118748244908,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD41,Équateur,0.3481272013889197,74.7815556872363,46.552548711999854,19.95212962456762,34.00493997579882,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD42,Sud-Ubangi,0.4309596177990044,78.77086541746309,54.71053485511952,16.86861234286263,51.0880417838654,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD43,Nord Ubangi,0.4503978010267847,83.4705159892541,53.95890940518071,13.721413741920168,55.83583044990387,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD44,Mongala,0.4320162455022312,83.26265826169028,51.88595398244742,16.442819924576117,49.299724056690906,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD45,Tshuapa,0.4858246794015637,88.64659496561846,54.80466334775635,10.22661973412372,61.61189327749008,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD51,Tshopo,0.3381653783513905,69.6289233224875,48.566796988253294,17.35168077579737,32.712344627756,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD52,Bas-Uélé,0.3493073673756805,70.25497913833514,49.71994464447549,26.59678819633851,36.3803272898588,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD53,Haut-Uélé,0.3280053449644837,65.50611806553908,50.07247485438128,25.62929975005067,32.429289059234264,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD54,Ituri,0.3990149763641351,74.30054214782949,53.702835111249804,18.03594498963168,41.18491861156042,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD61,Nord Kivu,0.3511420481696579,67.3417213098643,52.14331343773095,16.15024760705785,38.790416687589854,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD62,Sud-Kivu,0.3201466799260204,62.1962362716038,51.47364199466615,20.58522641770788,34.32329790356319,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD63,Maniema,0.437630534365483,85.13895962920397,51.40191238787105,14.29004496993194,54.41020947436781,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD71,Haut-Katanga,0.2884311108648748,55.40187528646802,52.06161513007929,20.9865920530024,29.787294123076656,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD72,Lualaba,0.3682104886654266,69.83956890663784,52.72233125574609,14.69755405921798,40.35937730154702,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD73,Haut-Lomami,0.398863689895345,76.76984381255754,51.955777175894326,18.92146166675834,43.43220019807935,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD74,Tanganyika,0.3876558779851514,73.55248732037668,52.70465923152495,22.386428467834392,43.89310358797124,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD81,Lomami,0.3774387728860429,75.0814085339317,50.27060363624719,22.77791860646049,37.98375627101814,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD82,Kasaï-Oriental,0.3953224665771955,74.48543350208806,53.07379550474298,16.38754343417212,43.29785749935194,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD83,Sankuru,0.4277548629747641,83.87602777707862,50.99846455671806,14.79826382094194,50.92988506430376,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD91,Kasaï-Central,0.4815596457583385,89.44480563983905,53.83874919438026,9.72095948966738,59.64997365998905,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COD,CD92,Kasaï,0.5250430764989319,93.58041613549725,56.10608481786511,5.94247250091391,71.04783773642083,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -COG,,,0.1116762938003927,24.26683482677609,46.02013183737042,21.305386082069187,9.37909548449881,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG01,Bouenza,0.216757286809953,45.73864538490759,47.39040366977648,23.60146083779783,19.834175854819392,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG02,Brazzaville,0.0241728649437844,5.84139965724649,41.38197411950227,18.80990246649786,1.52803317286824,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG03,Cuvette,0.1609829521004885,37.50820540381502,42.91939600077871,27.30150880143198,10.53167522178279,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG04,Cuvette-Ouest,0.2777615828425898,59.90831666822797,46.36444458635555,28.869585409271092,26.322722170922557,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG05,Kouilou,0.2725760565065072,57.73969636179736,47.207739853452594,26.52217211405138,23.17867764838868,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG06,Lékoumou,0.2880251728569511,56.13812636427347,51.30651689156688,27.16665907318752,29.72205606665877,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG07,Likouala,0.2969379035408526,60.790236436015974,48.846314959375256,24.68964049325105,29.799787681257676,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG08,Niari,0.1950306962260792,40.91394676983228,47.66851199256195,24.224753637241463,17.78101110324465,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG09,Plateaux,0.2564927575486171,56.719817453653576,45.22101252497863,29.30533712530491,18.22792404483695,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG10,Pointe-Noire,0.0443486752596367,10.86705601392148,40.810202140140674,16.52555318097769,2.08596160806053,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG11,Pool,0.2769583374655433,58.94784937892129,46.9836203328189,33.03675378846888,26.30348411801307,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COG,CG12,Sangha,0.2465188561769793,49.84147225650524,49.4605887459121,21.75270443802998,23.951576116277952,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -COL,,,0.0196572726283348,4.84625036819067,40.561818178770196,6.2302873842154405,0.82613147387204,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Antioquia Sin Medellin,0.0510586775320873,12.11444279043821,42.146946760429884,13.745495715352721,2.18893898022849,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Atlantico, San Andres, Bolivar Norte",0.0079394097745799,2.05373051529623,38.658478877569245,3.2571972925772603,0.17583129231855998,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Barranquilla A. M.,0.0037282544807501,1.02630910663291,36.32681866169593,1.19420711233293,0,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Bolivar Sur, Sucre, Cordoba",0.0391099115251267,9.8949630223785,39.525070924141446,12.78436227961376,1.20733294743403,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Boyaca, Cmarca, Meta",0.0105126807534665,2.7914297335696303,37.66056020340168,7.312181963368861,0.16487191302467,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Caldas, Risaralda, Quindio",0.0082328817867177,2.18344949175289,37.70584947265396,5.4169300700089105,0.26001821241796996,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Cauca Y Nari Sin Litoral,0.033755284399097,8.358546795327861,40.384154357986105,12.552145719126958,1.5757531507889802,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Guajira, Cesar, Magdalena",0.0566016789438267,12.789271614294739,44.25715603737923,8.444765175703969,3.8317518608020897,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Litoral Pacifico,0.0851546950480699,20.79011588911237,40.95922095973731,15.709338426709829,3.5925853749713097,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Orinoquia Y Amazonia,0.0304553275867361,7.3974519070483,41.17002444817282,7.43762021019995,1.6622306076030597,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,"Tolima, Huila, Caqueta",0.0274198520224809,7.091342866145429,38.66665671093859,10.64163705136003,0.9064259427284701,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,,Valle Sin Cali Ni Litoral,0.0061891628300914,1.6836585977088199,36.76020090126257,4.189770175498571,0.16259040930951,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO11,Bogota,0.0012729250002591,0.34225591714822,37.1921984830976,0.9386167749360399,0.0635489367672,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO17,Cali A.M.,0.0018743323859258,0.5427664540979099,34.5329445431735,1.30168889614497,0.02108884578429,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO47,Medellin A.M.,0.0014860716541279,0.41491240919135997,35.8165150332361,1.0903280254969399,0.02368158950144,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COL,CO68,Santanderes,0.0176262878136666,4.53932883255567,38.830162924643005,6.19943307388831,0.45664770754886996,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -COM,,,0.0842989275103037,19.21891458539816,43.86248096151641,19.43717554738457,5.67971351737111,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -COM,,Ndzuwani,0.1219286801955142,26.27125582133295,46.41143956906121,20.44578414500161,9.83697781417464,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -COM,KM2,Ngazidja,0.0466721999053907,11.84523766169383,39.40165764366495,17.954575337761263,1.8490586769994801,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -COM,KM3,Mwali,0.1101326046825767,25.79610823134025,42.693496125424915,22.685664915203372,6.774592007735671,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -CRI,,,0.0020063009860111,0.54046664053325,37.1216433271745,2.4098417381070303,0.015083144169339998,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CRI,CR1,San José,0.0017262674036017,0.46408313473308,37.197374228963945,1.7853811863782603,0.01258333542144,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CRI,CR2,Alajuela,0.0026216214839448,0.73615567560469,35.61232455066462,2.66017352364253,0.025095118216720003,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CRI,CR3,Cartago,0.0010786017181416,0.28742226249095,37.52672840279871,2.36849941098995,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CRI,CR4,Heredia,0.0001219574154245,0.033261113297570005,36.66666666668,1.0714778626231098,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CRI,CR5,Guanacaste,0.0011745803219462,0.32252702011174,36.41804403052114,1.26509475687127,0.018757546887190002,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CRI,CR6,Puntarenas,0.0031898952233742,0.8839413480894001,36.087181918449765,4.20396554181341,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CRI,CR7,Limón,0.004208141040662,1.04149459475008,40.40482842517126,4.41976325246103,0.05146428780388,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -CUB,,,0.0026887050480684,0.7064320259911,38.06035045333903,2.6547534994259303,0.09422539531132999,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU01,Artemisa,0,0,,0.44161408783134004,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU02,Camagüey,0.0026509277172675,0.7952783151798599,33.33333333335,4.5950332030141,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU03,Ciego de Ávila,0.0033127240824532,0.92106471747584,35.96624666648392,1.9919889703115898,0.034527259251859996,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU04,Cienfuegos,0.00149722928448,0.4491687853438,33.33333333334876,1.7272194481137801,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU05,Granma,0.0046030367150082,1.25498543165513,36.67800915375984,5.69515569847851,0.08562265930407,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU06,Guantánamo,0.003799826915781,1.0610422298704099,35.81221188759905,3.14853410871682,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU07,Holguín,0.0035445567971047,1.01249068118149,35.00829057476828,3.36241466372433,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU08,Isla de la Juventud,0,0,,0.29265561280203,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU09,La Habana,0,0,,0.18810724585867,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU10,Las Tunas,0.0080722058029752,2.17579990399787,37.0999455792933,3.8771972603978,0.18402256722572,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU11,Matanzas,0.005397614528149,1.07799773610548,50.070740850061114,0.9032109602073599,0.81192993350775,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU12,Mayabeque,0.00080091660276,0.20579875213208998,38.91746643079367,0.83405665739199,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU13,Pinar del Río,0.0018081552688939,0.50927458776462,35.50452569861304,3.59363963040973,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU14,Sancti Spíritus,0.0015920818648408,0.47762455945201,33.33333333334999,3.16503053093947,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU15,Santiago de Cuba,0.0048145649339576,1.18354721992621,40.67911151240589,4.35713710796493,0.18679753266781998,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -CUB,CU16,Villa Clara,0.0009165235987679,0.23567749682591,38.88888888890999,2.78850673838822,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,,,0.0087861887056307,2.26660772578321,38.76360521357829,4.79474686745497,0.24247750739836002,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO01,Cibao Nordeste,0.0064000493704557,1.6309697831256,39.24075992499736,5.34754012006226,0.18711417845312,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO02,Cibao Noroeste,0.0215061621865358,5.42596831530607,39.63562066123612,7.132442720767799,0.57914423385899,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO03,Cibao Norte,0.0051862011898031,1.40969923902754,36.78941611248021,3.9750233207049797,0.11302446007790999,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO04,Cibao Sur,0.0070527126383281,1.8779276075930302,37.55582808310523,5.260871979821459,0.3074132258854,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO05,El Valle,0.0293289168012636,6.9314187116699,42.313006934474764,10.36801821891034,1.59979231115466,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO06,Enriquillo,0.0300710646073985,7.16117562330956,41.99179881794473,9.15243877030494,1.63247041889733,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO07,Higuamo,0.0088699364580035,2.49504420487547,35.55021767017655,6.94404051064159,0.02464373491869,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO08,Ozama,0.0043424286735945,1.13905199522284,38.12318218840361,2.27238575798048,0.03664700341157,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO09,Valdesia,0.0099898464541497,2.64129044838407,37.82183992775749,6.760367542642159,0.26743348745118,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DOM,DO10,Yuma,0.0128032304851437,3.41600033771177,37.480179213682405,7.27030502056966,0.13454361926927,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -DZA,,,0.0054090931224496,1.38083493006439,39.172626681723074,3.60716807806767,0.20280777334682,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Centre,0.0192122833485715,4.36244943876897,44.04012841462975,4.84564539604902,1.37438582269729,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Est,0.0038034845605433,1.02898376438032,36.96350411159181,3.7516161826628003,0.026219565761389996,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Hauts Plateaux-Ouest,0.010036950480921,2.6333527194562,38.11472123261035,5.46667310024546,0.16429678978327,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Nord-Centre,0.0028622755901281,0.74350976656756,38.49681226572021,3.28396864262485,0.10909488728903999,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Nord-Est,0.0027126658120796,0.71495237976367,37.94190898387246,2.7714157253323197,0.07763718896378001,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Nord-Ouest,0.0044658942764251,1.20721468620238,36.99337265746663,3.8037654976006,0.059205176556709996,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -DZA,,Sud,0.0087306179310241,2.33074346377673,37.458510843046724,3.45530712804221,0.31959144039515996,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -ECU,,,0.0079374393693257,2.09122072318136,37.9560095275384,5.93046767932049,0.14324792632742,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC01,Azuay,0.0028342351140275,0.75070213747178,37.75445642891888,5.522559844669931,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC02,Bolívar,0.0283069547744352,7.35842419311005,38.46877270399814,9.85437699698337,0.50837083889774,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC03,Cañar,0.0057157580262864,1.56527315754835,36.51604193634099,7.39746064218047,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC04,Carchi,0.0048037570358527,1.36174982186949,35.27635516234435,7.11899809234385,0.03808828789466,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC05,Cotopaxi,0.0112109146101734,2.92502197409692,38.3276252604382,7.86777102474646,0.18379666152293,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC06,Chimborazo,0.0183645676958929,4.999264941357691,36.734535799387956,8.776154341496149,0.05498561612312,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC07,El Oro,0.0020413373117233,0.55021168019528,37.10094469457319,4.0025834530815,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC08,Esmeraldas,0.0113872048114424,3.07650363296192,37.01346128585377,8.35297326760866,0.08080602338161,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC09,Guayas,0.0036361325418896,1.00013731604616,36.35633311098036,4.15356533375051,0.000319355702667,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC10,Imbabura,0.0075947466356063,2.11697485181163,35.87546932410188,7.5131839339725905,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC11,Loja,0.0113357363512065,2.88169416016375,39.33705563869552,7.74707108619064,0.3510407218724,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC12,Los Ríos,0.0086328046005138,2.31542632832875,37.28386645212283,7.277889510034901,0.12112743206696,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC13,Manabí,0.0140884080117829,3.53736516939955,39.82740638047939,10.71887894285895,0.48660811388605996,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC14,Morona Santiago,0.0569351208644416,13.81480704794204,41.21311334053204,17.10199130397191,2.68635470993335,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC15,Napo,0.0257875816508932,6.469247763090751,39.861793202634985,13.062819214394999,0.96804003335079,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC16,Pastaza,0.0375364229036257,9.05537793188923,41.45207763382043,12.576924339881272,1.4122579268740099,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC17,Pichincha,0.00289451365513,0.8540370211880499,33.89213328367691,2.01602257609199,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC18,Tungurahua,0.0062386073418486,1.7419967830496201,35.81296706488198,4.94913593909952,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC19,Zamora Chinchipe,0.0092812836092917,2.33512309485435,39.74644261685299,10.95083556449052,0.33678238812948,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC20,Galápagos,0.0011011583369386,0.30584812772392,36.00343559835629,7.191330361874989,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC21,Sucumbios,0.013006438248591,3.3003054418242597,39.40980154067677,8.70501862653557,0.30077219252929,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC22,Orellana,0.0394058538215882,10.01298241059006,39.35476185388208,12.79680990822008,0.9839071084775399,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC23,Santo Domingo,0.0053530755437952,1.40673047299585,38.053313314490474,4.6749447560960595,0.15678375370817998,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC24,Santa Elena,0.0084896366047472,2.31071897666871,36.74023838669666,7.878099359881929,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ECU,EC90,Zona No Delimitada,0.0031014408708051,0.79992330097971,38.771728077011694,6.50164905720371,0.12934749003531,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -EGY,,,0.0196817970481813,5.23862010660077,37.57057516612407,6.0897838019372,0.58326486998882,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG01,Cairo,0.0098010389101262,2.86680388121132,34.18803418804123,0.61746545133782,0.14701558365186,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG02,Alexandria,0.0073079479742415,2.13266070036707,34.26681034157778,0.23889476761975,0.11944738380987999,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG03,Port Said,0.0007056296978065,0.20708697653013,34.07407407408221,2.4160147261848697,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG04,Suez,0.0054861978082961,1.5189346650020201,36.118721461194795,0.64502704952141,0.14565126924677,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG11,Damietta,0.0144076902582394,3.65349021318475,39.43541495265221,13.56593078093612,0.41477014839446996,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG12,Dakahlia,0.0064675440714655,1.87212034749604,34.54662559549548,3.32802929688401,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG13,Sharkia,0.0216878424298516,5.71734856868222,37.93339197237432,11.93440899734904,0.09950107312008999,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG14,Kalyubia,0.0097969892236345,2.7023808031017,36.253177984352966,4.113845535443151,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG15,Kafr el-Sheikh,0.011194958991617,3.16562580102649,35.364126069439,2.12629272051701,0.14692884632022,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG16,Gharbia,0.0135048810661837,3.75640124456317,35.95164676758109,3.2561613569980303,0.42924480889930006,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG17,Menoufia,0.0082041426920986,2.28870236218059,35.84626305135648,3.88759769031958,0.18638639463929,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG18,Behera,0.0161845261857239,4.16166961300801,38.88950274941677,12.0076843639952,0.61869491917205,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG19,Ismailia,0.0141191745223109,4.0154546425434905,35.16208195385684,2.28578216321127,0.17132703998114998,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG21,Giza,0.0269017978406447,7.42167071767079,36.247630572712254,3.84305968924778,0.55974302380987,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG22,Beni Suef,0.0349543779263873,9.38453254179179,37.24679707883822,4.25271275725796,1.39347626653852,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG23,Fayoum,0.0379505936423876,9.59822227915954,39.53919021524333,7.65718251238001,2.10893304515516,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG24,Menya,0.0304035982298479,8.033495009271741,37.846041100116516,6.53697956853376,0.9261065463484699,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG25,Assuit,0.0404344855900635,10.22226735326196,39.555300397382695,10.467716509572659,1.9381026123829401,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG26,Souhag,0.0416161791544141,10.41451759379603,39.95977612943394,10.50012191885638,2.01680097819029,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG27,Qena,0.0146912647033928,4.13765483473703,35.50625968134078,7.96288453908258,0.19779802260523,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG28,Aswan,0.0184519075333942,4.91698169229425,37.52689899641371,7.24592873676816,0.30226887057081,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG29,Luxor,0.0182618604918507,4.5033437957245,40.55177956697109,7.373793411279039,0.6624557576815799,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG31,Red Sea,0.0183578917415695,4.74971572084699,38.6505063050297,3.4997534878797696,0.42538439600311995,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG32,New Valley,0.003880289517015,1.11744470587344,34.72466688167843,3.07993372676713,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -EGY,EG33,Matroh,0.0415351798791384,10.95248109209418,37.92307836908274,18.76160903759254,1.19770510409286,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -ETH,,,0.3666042420165839,68.73685809402602,53.334448530525115,18.353687389238292,41.86803377913869,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET01,Tigray,0.3049748507001338,58.04230164552659,52.54354876597811,16.216178473944,33.800192262745234,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET02,Afar,0.4865077604262327,84.66766521534127,57.460868820329836,7.630993849288881,62.29438222594348,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET03,Amhara,0.3603275618177073,69.28212489639141,52.00873419465161,20.965685258658002,38.609933501815,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET04,Oromia,0.3845335137781559,71.50075493237085,53.78034317845567,17.18987922544642,44.38399845262483,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET05,Somali,0.5294925831669297,89.99626822336721,58.834948783959575,7.255758017301759,69.79394305031799,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET06,Benishangul-Gumuz,0.3409375528782928,65.37984189107895,52.14719751789635,25.57411821634995,33.56302325186126,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET07,Snnpr,0.3625548085001437,69.59171808436672,52.09740734674993,23.97782339162239,41.15003750606376,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET12,Gambela,0.2481331928392249,54.12123897749155,45.84765565740665,29.925926004905328,21.61259710134363,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET13,Harari,0.2410146476802318,45.96946728552062,52.42928881104224,13.15407394114061,26.667264323503858,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET14,Addis Ababa,0.0433102732670903,11.40579532441273,37.97216418077386,7.681794228733629,1.29410328665975,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ETH,ET15,Dire Dawa,0.1776112349363667,33.25179566696802,53.414028137074055,13.10283623582258,20.50923438865872,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -FJI,,,0.0057576633181347,1.51132239819301,38.096856931510956,7.38715844525392,0.2136410867574,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -FJI,FJ1,Northern,0.0145755126987601,3.76466240404123,38.71665274186016,11.33020114111778,0.72229805906252,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -FJI,FJ2,Western,0.0035156060258258,1.02137269690763,34.420403408763974,6.34205330533381,0,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -FJI,FJ3,Eastern,0.0128385191668728,3.19059026815086,40.23869593983782,11.23079297261365,0.67380946223853,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -FJI,FJ4,Central,0.0043331694159463,1.07974009601696,40.13159677899227,6.7252793899603205,0.20795507152964998,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -GAB,,,0.036656730607904,8.64666784863322,42.3940542757154,14.88900129056028,2.33150438951716,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,,Libreville,0.0095321751146262,2.46474604143715,38.674066026973634,11.71221532055195,0.28886255248871,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,,Port Gentil,0.0232662518372871,5.55235959342492,41.9033591859556,10.34054446442028,1.2684921615981999,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB001,Estuaire,0.0242601699914873,5.84053450938064,41.537585220192405,12.94856783576282,1.48253313637331,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB002,Haut-Ogooué,0.0579808814504319,14.072620954028938,41.20119602442089,19.7820479825508,3.4709620110677797,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB003,Moyen-Ogooué,0.0570525156896869,13.64286088446438,41.818586418816814,23.576129483564838,3.2069130249853,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB004,Ngounié,0.0962240511593554,21.019407095932998,45.77867050206832,20.17355830647095,7.7958091752913905,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB005,Nyanga,0.1083910088246464,25.43333884577254,42.6176875485866,22.788596201197368,8.68944691322387,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB006,Ogooué-Ivindo,0.1804870924201493,39.444955134692876,45.75669862060665,25.383110180621237,15.78456368189472,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB007,Ogooué-Lolo,0.1078042408088138,24.29071069324625,44.38085084055921,18.92217048130976,7.97018196944234,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB008,Ogooué Maritime,0.0650733840951614,15.84794640264786,41.06108289480902,18.51705466703621,2.96656698858379,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GAB,GAB009,Woleu-Ntem,0.0551569371682588,13.485184190254351,40.901878973310815,21.19981260787747,2.8233993450083603,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -GEO,,,0.0012446002611653,0.34012585571293,36.59234487059244,2.08389143571708,0.012687003625790002,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GHA,,,0.1127845642449951,24.79938841666785,45.47876840752726,19.97758358501422,8.362117757314289,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH01,Ahafo,0.1268990253919206,29.810048129647086,42.56921184428256,29.07061124325275,6.313860944758829,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH02,Ashanti,0.0600137072751696,15.23727525262041,39.38611482709078,22.774249024495692,1.72788222818883,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH03,Bono,0.066108027100529,15.9302223028267,41.498496282000154,21.17093904437013,4.462125889953731,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH04,Bono East,0.1708596453775111,34.78247356883192,49.12233888121632,21.138857548752828,14.62542017010469,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH05,Central,0.082089261908519,19.71186638512477,41.6445912856158,22.58951051251549,5.16616806384925,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH06,Eastern,0.0687869651546916,17.13410294359986,40.14623081296806,18.22904891354531,1.7558432903104,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH07,Greater Accra,0.021051686397721,5.39862519084401,38.994532225397485,12.79117013959954,0.37456810501321997,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH08,North East,0.3393637613787197,68.73955163030111,49.36950464907087,16.93510770686389,34.20377559098104,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH08,Northern,0.3086394552423685,60.913721641159924,50.668297212334245,16.06661487562122,30.345395541399363,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH10,Oti,0.2192070969675216,46.7206907579576,46.91863356711726,19.14632308832867,19.464950930274767,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH11,Savannah,0.3255019959326504,59.825358385396186,54.40869970820062,15.35778738202415,36.73456138973654,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH12,Upper East,0.1571300016164791,36.53958795750492,43.002674742588596,24.49381791658731,10.30777999355157,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH13,Upper West,0.1766946384575235,38.96131208373498,45.35130595134333,26.690987860867484,13.82226485310278,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH14,Volta,0.0830632695794586,20.573512400699638,40.37388850366351,19.90972024030499,2.67041451450656,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH15,Western,0.0537172205395812,12.55516716527768,42.7849504769164,22.705151518924673,3.6359825897548297,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GHA,GH16,Western North,0.1015260773523636,22.87104531245523,44.39065900371157,22.65225942738458,8.03510881467045,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -GIN,,,0.3732216343706789,66.2111021065078,56.36843708934358,16.40504659515928,43.51494364263904,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN001,Boké,0.4220813532233228,71.6486031362158,58.90992074484367,12.29982471509089,51.423700989461594,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN002,Conakry,0.0632124889697937,14.29157400118632,44.23059976776981,33.857786249216694,3.79146249560696,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN003,Faranah,0.4888116374396018,82.72034074539654,59.09207252229612,12.25333662202342,62.21825387372577,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN004,Kankan,0.4171344132953079,75.71738874961757,55.09096657766277,13.54336801133004,46.75490730824896,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN005,Kindia,0.3637417027586208,63.307021948780516,57.45677044371343,16.61236253348045,42.09079864463013,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN006,Labé,0.4937952469122695,84.0421947828874,58.755634379602796,8.914880830814429,59.83388269392024,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN007,Mamou,0.4010578223973603,73.39905718318228,54.64073215497017,15.08125301486419,46.74458202551769,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GIN,GN008,N’Zérékoré,0.4335777296158588,79.12443521444973,54.796944640519676,13.364019702826399,49.78634752334138,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -GMB,,,0.1980230645121454,41.709080364668,47.47720706877344,28.03138152866148,17.28999415237872,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Basse,0.3176569112683541,61.5409034237049,51.617199877828924,25.564758338331313,32.92515301407967,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Brikama,0.1442419263844519,33.061079784185395,43.628921779333204,30.428995320571477,8.96435499280376,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Janjanbureh,0.4003218090013377,76.72011303996133,52.17951240410987,11.70366734616987,47.462822834608,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Kerewan,0.2703165812124359,56.80329670491482,47.58818535070113,24.68636106316284,27.15996709148406,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Kuntaur,0.4392651542321202,80.7391392908853,54.40547893996549,13.717444524027961,54.02201910955796,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,,Mansakonko,0.269715344933154,56.996935948866046,47.32102532233052,22.09883451435451,23.78349288135583,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,GM01,Banjul,0.044922381125677,10.52050914316294,42.69981662899943,32.31816462256291,1.4379378756657,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GMB,GM05,Kanifing,0.0808073230930417,19.375635085965552,41.70563841366584,35.58537765035341,2.53525189332459,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GNB,,,0.3406887234429699,64.39631048074149,52.90500665327047,19.95652545565551,35.88170171232312,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,,SAB,0.1095508215543179,25.83286618565016,42.40753649518459,25.83053965492915,5.99885865067867,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW01,Bafatá,0.4247729721285656,78.57967184425671,54.05634334671908,14.040381361143389,49.10639498083129,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW02,Biombo,0.2856944726853827,59.25926394087101,48.21093845688821,30.47292784571415,23.572321007670848,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW03,Bolama,0.3239679554023074,66.86048433270041,48.4543237512654,25.04752474193505,31.04705558991497,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW04,Cacheu,0.292230121073873,61.52487538684039,47.49788101746865,30.37660395149027,22.73012326684176,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW05,Gabú,0.4894546801762928,83.64881604143724,58.513043380534036,10.65154622106274,58.257485002073,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW06,Oio,0.4762569429799463,83.39542050944532,57.108284851924964,11.77689679206526,58.54394645722773,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW07,Quinara,0.3348402193473941,67.89421525690065,49.31793056012406,26.2326912221453,30.40143886441896,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GNB,GW09,Tombali,0.3772459701426815,74.12821155876233,50.89101196561773,22.12698499235897,35.95025020121761,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -GTM,,,0.1335178204117833,28.88182820396132,46.22900581946906,21.08764585646695,11.21537939639027,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,,Guatemala Municipio,0.0154962766556458,3.55793759011313,43.554099146390776,10.469638536596799,1.41836665293995,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,,Guatemala Resto,0.0375383635755389,8.77018851124887,42.80223113493083,16.92749766897078,2.2523443283462,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT02,El Progreso,0.0805670576439305,18.32653450108156,43.96197090026797,18.83778959774499,6.03694378649831,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT03,Sacatepéquez,0.0598844388141978,13.67005785774715,43.807011965395496,17.32814473201982,4.92078497402252,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT04,Chimaltenango,0.1040419117069925,22.84309401621353,45.54633082241214,28.10186684420357,8.407654510360631,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT05,Escuintla,0.0726503996738873,17.29481579923972,42.00703870872158,22.10758748444856,4.68312066156899,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT06,Santa Rosa,0.1013312138928056,23.3802521153791,43.34051377750188,20.57422275621738,5.9148893939012,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT07,Sololá,0.111088499069016,25.79990647296853,43.05771386629146,32.90314949377955,6.783908920151779,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT08,Totonicapán,0.1574165275161754,34.44587617121629,45.69967294015763,27.7216521109147,12.27299572540535,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT09,Quetzaltenango,0.1082370002367624,24.89452037598709,43.478242843017924,25.30826037521893,7.223584742695929,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT10,Suchitepéquez,0.1263868875555026,29.47160670484766,42.88428819685415,21.682109364228268,8.33287811916076,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT11,Retalhuleu,0.1146635335470944,26.02602694130186,44.05725614812522,21.14564683235066,8.35208133623048,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT12,San Marcos,0.1461113832842169,31.493523320799937,46.39410516120862,26.464841143044488,12.463194148332999,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT13,Huehuetenango,0.2331708346598393,47.28855300062088,49.30809252225964,23.761553117309912,23.32309250926241,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT14,Quiché,0.2284750488332997,48.315395834607564,47.28824940509888,25.013412356077,20.83988374852299,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT15,Baja Verapaz,0.1749569214059793,37.576057800793876,46.56074416680376,22.47122001287651,15.11662719121313,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT16,Alta Verapaz,0.2544903268325603,54.03480274148441,47.097484199230585,17.504698039350313,21.19803787675469,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT17,Petén,0.17315490251924,38.46745757388148,45.01334723946202,18.50985078496258,13.35224226364482,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT18,Izabal,0.1282864512036998,29.36637457793817,43.684810620128964,17.84252529314746,8.43009971762575,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT19,Zacapa,0.1276035132931421,26.331125133291312,48.461094103346454,19.485532144264937,12.47939675506956,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT20,Chiquimula,0.2196877636406564,44.24293648159381,49.65487852101593,17.45496689136176,23.83641163143973,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT21,Jalapa,0.1911112532157249,38.996472971425675,49.00731749657463,18.35814615119229,18.44403532120326,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GTM,GT22,Jutiapa,0.1247434890561295,26.62777317787162,46.84713521587101,21.61179825753773,12.050337718170159,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00 -GUY,,,0.0071647093309801,1.8236149348832598,39.2884988707267,6.4989857303715395,0.22317483037907998,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY01,Barima-Waini,0.0633709924060881,15.46328914225377,40.98157372801463,17.81104572002127,2.0296097645162803,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY02,Pomeroon-Supenaam,0.008524138095597,2.24167294003827,38.025788433934146,7.5129504423902596,0.32919683341794,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY03,Essequibo Islands-West Demerara,0.0008619444507645,0.25042146827307,34.41975069903233,3.8932291921460798,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY04,Demerara-Mahaica,0.0015394400369497,0.46183201108471,33.333333333347234,3.60756960675742,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY05,Mahaica-Berbice,0.0002675723279724,0.06880431290716,38.88888888889999,9.69099300007059,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY06,East Berbice-Corentyne,0.004870143932866,1.25413851449132,38.83258409332332,10.79140359112353,0.03359694823383,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY07,Cuyuni-Mazaruni,0.0537285435044707,12.61484421179608,42.5915236069498,13.4915410564957,3.41120646313387,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY08,Potaro-Siparuni,0.1018678203997719,22.98158559238221,44.32584513817808,20.23661881627778,6.6845926783792,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY09,Upper Takutu-Upper Essequibo,0.0471764825602741,12.4232762504412,37.97426830832862,20.412990090646378,0.84531672903573,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -GUY,GY10,Upper Demerara-Berbice,0.0030603398928405,0.7694583956345,39.77264931025782,3.1390889673488998,0.19493515898951,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -HND,,,0.0511541693859289,11.974922395070239,42.71774605152158,14.79180583143013,3.02685583186123,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,,Distrito Central,0.0065766902571224,1.5643568871448799,42.040855965581706,4.10661941957708,0.4123342101365,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,,San Pedro Sula,0.0051942830989945,1.50207712992366,34.580668299359964,4.72298064313231,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN01,Atlántida,0.0244224770630516,6.54324269759997,37.324730552956034,11.55992748833255,0.44141193498842,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN02,Colón,0.0389417828224801,9.01044207609224,43.21850414621259,15.40335093764868,1.95654993148642,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN03,Comayauga,0.067201334809109,14.77754037307138,45.47531802489116,17.883669436143272,5.50421423433703,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN04,Copán,0.0969721439164569,21.60972273319582,44.87431195380073,19.5762920111153,7.7450939992533305,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN05,Cortés,0.0140385753094568,3.5290238679680397,39.78033539778809,9.372618942191261,0.25649654284058004,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN06,Choluteca,0.0595495873725032,14.202595910464948,41.92866413148109,18.61046862525002,2.98626133945598,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN07,El Paraíso,0.0597305042597786,14.57445794534726,40.983002238410435,18.95073690559184,2.68038137540792,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN08,Francisco Morazán,0.0458865569411518,11.32230583585237,40.5275723924104,15.453013751705699,1.7764836231646102,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN09,Gracias a Dios,0.1620505040513764,35.62043639250718,45.4936885853156,26.029963248468153,13.48630342466492,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN10,Intibucá,0.0891372187600312,21.31547552405732,41.81807657043733,25.28837760954173,4.919731895455691,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN11,Islas de la Bahía,0.0036526612763034,1.00932327802386,36.18921069030465,8.42784375220941,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN12,La Paz,0.0756490110297627,17.39783900811095,43.48184334531131,21.16610639192583,5.515523890492839,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN13,Lempira,0.1192286722110346,28.10228191357641,42.4266871201781,27.604083944281786,7.17911864045203,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN14,Ocotepeque,0.0505440641175871,12.06424611606522,41.89575016235839,21.03670485572379,2.58789767111942,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN15,Olancho,0.0968719429128403,21.62413800428424,44.7980598781083,14.6028647721793,6.285684385079331,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN16,Santa Bárbara,0.0445756294425697,10.86885810295714,41.01224711954039,19.930601016773412,2.4050821028274,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN17,Valle,0.0424949896322926,10.743170496798781,39.55535253299307,18.820638166739283,1.6311790104911599,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HND,HN18,Yoro,0.0743732120610456,16.87930007962871,44.06178675074634,13.332650371737408,5.1316188215189,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -HTI,,,0.1995876944902279,41.26889832441507,48.36273867096422,21.84814660322789,18.52696795712318,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,,Aire Métropolitaine,0.0588700931846139,13.826536153692029,42.5776149067488,18.35919702480045,3.3212979959730298,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,,Rest-Ouest,0.2302530795042502,45.709165057232084,50.37350369798972,20.891815299633222,23.0023522654167,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,,Sud,0.2261192365450116,45.96639620382382,49.19229159109089,23.384419972106627,21.89896837586689,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT02,Sud-Est,0.2245172881584468,48.10095253563367,46.67626654422741,25.88043287753421,18.49616364472105,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT03,Nord,0.1948753068731505,40.96250668542064,47.57406776146112,23.2332599219015,16.82482187101419,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT04,Nord-Est,0.2030207624734716,43.14219440781681,47.05851551136835,25.09266012852494,16.50931462256598,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT04,Nord-Ouest,0.2302739739727249,49.997995610050275,46.05664110391592,27.42855439592558,20.154162963123127,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT05,Artibonite,0.2503158875337284,50.62521984012698,49.4448988713963,19.84038918963887,24.51670323942225,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT06,Centre,0.2935398755187234,57.856576114632944,50.735784111580365,20.74044160465608,30.940171201136117,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT08,Grande Anse,0.2963843258342637,60.70713216509368,48.82199426391013,26.0129564405442,29.43413413297002,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -HTI,HT10,Nippes,0.1870824512384791,41.78974990950571,44.76754506633797,25.84881168444105,16.4224295691288,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -IDN,,,0.0140107488937181,3.6190070372260497,38.71434553621994,4.74388050680719,0.44392650278867,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Central Java,0.0099944372971649,2.76063668006566,36.20337789950376,4.22187654353744,0.11094752975911999,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Central Kalimantan,0.0172860663883669,4.6770050215552095,36.959691744395265,7.450519037964599,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Central Sulawesi,0.0250978770977996,6.6257449581989105,37.87932867343873,7.67367630459062,0.45118206285424,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,East Java,0.0108402204247471,2.94902202556445,36.75869603812886,4.61634452351257,0.10448951165025,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,East Kalimantan,0.0087560721791253,2.3639644845184002,37.039778881911154,1.81518821012831,0.15428910898411,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,East Nusa Tenggara,0.0655737193553356,16.11517213550352,40.69067261830194,21.75098176969491,3.12433182612736,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,North Kalimantan,0.0242124707204652,6.19343990542772,39.09373642141297,3.1573396341464903,0.82112541673107,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,North Maluku,0.033309630914409,7.745006297336491,43.007880995350725,12.556616781104871,2.0225445017850103,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,North Sulawesi,0.0078784063785019,2.06664616562633,38.12169934815243,3.06905536102289,0.19793507045027997,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,North Sumatera,0.0208497665412601,4.95418030017209,42.08519932255166,4.922272072152,1.5981506828467,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Riau Islands,0.0051792390335349,1.41169754446883,36.688021834617714,1.24240849090401,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,South Kalimantan,0.0186213513986652,4.94898448562655,37.626610979985045,5.67343195507354,0.35813133127955,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,South Sulawesi,0.0109214555171935,2.88469344995335,37.860021200416035,4.945082378471341,0.10362837989405999,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,South Sumatera,0.0151628775021257,3.7351167301823702,40.595458180996005,4.7482138464283095,0.6744148454922599,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,Southeast Sulawesi,0.0208648812450731,5.17503410226724,40.318345411351,5.39026060280028,1.1000271788381901,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Java,0.0088549879832325,2.39226148735453,37.015134131615,3.11867254052307,0.13523727202135,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Kalimantan,0.0210305215544719,5.34615609633176,39.33764965991536,8.41916068394886,0.5866690702405599,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Nusa Tenggara,0.0167827416888485,4.53038642692603,37.04483482711658,4.32784545915283,0.37742969295781004,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Papua,0.0414269079336103,9.578636750732281,43.249273369139104,4.2516081241790395,2.86173745652756,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Sulawesi,0.0280555806496793,7.126121071195899,39.37005892740338,11.05967952089667,0.72714675124192,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,,West Sumatera,0.0124439167298122,3.41738661808342,36.413546725922316,4.86268939154448,0.38260217949464004,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID11,Aceh,0.0117926622887426,3.03825508353184,38.81393090613772,5.01365167158447,0.41208545325021,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID14,Riau,0.0089872842770438,2.30960169238316,38.91270216281422,2.93833505617388,0.48764065825854996,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID15,Jambi,0.0066647763154949,1.81334697068204,36.75400473957913,3.69411825557827,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID17,Bengkulu,0.0079504125264173,2.19774861085665,36.175259022542896,4.10601878707009,0.23304758585775998,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID18,Lampung,0.0127056906025274,3.3894943736710195,37.48550433133312,5.73379500372752,0.20170382364109998,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID19,Bangka Belitung,0.0146545137242395,3.94019094361205,37.19239482035199,4.05124704488399,0.30534793840651,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID31,Jakarta,0.0052340046965846,1.4949431321595401,35.01139664773593,0.541171759497,0.12494819823217002,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID34,Yogyakarta,0.0081146814773727,2.29255873172079,35.39574085974174,1.36426928514527,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID36,Banten,0.0152407185557479,3.91330753529905,38.94587485975146,4.39990111915469,0.6070991331091,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID51,Bali,0.007880048223558,2.1906911043452397,35.97060401591041,3.9237069760225,0,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID75,Gorontalo,0.0355009186018123,8.876151479874279,39.995845814829615,7.86759093691335,1.36826762978738,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID81,Maluku,0.0209797296127295,5.36075003366197,39.1358102522794,9.961254120314871,0.5645316835595,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IDN,ID94,Papua,0.0828609950939976,17.93301853721358,46.20582693429396,16.31540898119264,5.84160150763268,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -IND,,,0.0688105643495396,16.39280600909342,41.97607432880559,18.68689925393821,4.24535051896544,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Andaman & Nicobar Islands,0.0141821291787469,3.6707664333977297,38.63533525237039,10.1618324234757,0.45752478220781,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Andhra Pradesh,0.0286211631190136,7.3215198251205305,39.091833120239336,15.533894084442078,0.9681553770971499,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Arunachal Pradesh,0.0540713218765498,13.206129970990299,40.94410852787869,18.46087231688754,2.74482116242504,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Assam,0.0899183800385575,21.410457179559238,41.99741242536539,21.69236765249547,5.4333123436283,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Bihar,0.154399464934868,34.66086476628766,44.545762483411025,19.9787391972855,13.191225220940431,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Chandigarh,0.0178127750581124,3.9426313130870096,45.179915755717296,6.9399836566103295,1.18298196298658,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Chhattisgarh,0.0731745889051574,17.884792773788067,40.91441809289622,24.00071254895192,3.7307688922686504,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Dadra & Nagar Haveli and Daman & Diu,0.0558938557090852,14.268456063807362,39.17302296697866,19.378623985847803,2.41201468991271,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Delhi,0.0133876584906626,3.3542813179193995,39.91215173021552,7.189266238922009,0.48898501952992995,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Goa,0.0053279983793787,1.39379981332695,38.22642483113119,6.38905024918818,0.13608122368145,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Gujarat,0.0590249641108678,14.402173011244809,40.98337387336117,17.7387736933332,3.01645380758209,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Haryana,0.0298069948508933,7.1746013463368605,41.54515827713813,17.90884955079188,1.59325362100292,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Himachal Pradesh,0.0203555177507209,5.3102640058972,38.332402547435564,17.419379906215678,0.63453005715839,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Jammu & Kashmir,0.0248917446409916,6.2550865018275905,39.79440513527482,11.15573506301596,1.00861004538844,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Jharkhand,0.1318070300042039,30.603044915065343,43.0699070533722,22.542714223879152,9.14728319544861,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Karnataka,0.0333339461828899,8.497858205143439,39.226291352701196,17.972247910560522,1.28185843503303,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Kerala,0.0030631847872796,0.8574502855095,35.7243427292054,8.64066698795345,0.03031827133185,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Ladakh,0.0243842275833821,6.51178921052,37.44627904107927,13.46166318000833,0.80077385611091,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Lakshadweep,0.0032633370560781,0.8826419947529,36.97237470546168,14.303518400111681,0,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Madhya Pradesh,0.0994171726564811,23.962457613577,41.4887213405656,22.19369820141344,5.4665352856760805,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Maharashtra,0.0356919448067687,8.98805613712293,39.71041598121759,16.93176671282723,1.39849319553712,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Manipur,0.038346425252955,9.67144307071405,39.649124719630805,17.40117184356679,1.37756484196178,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Meghalaya,0.1230173828140467,27.01906224555718,45.52984914725335,20.01991195992019,10.30658680208547,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Mizoram,0.0245889652902473,5.75036037533488,42.76073791082228,9.1094969678308,1.7597163194645702,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Nagaland,0.0660178088487265,17.05622656493351,38.70598728118141,15.482927813555488,2.89292422417788,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Odisha,0.0863464205278114,20.79997193960432,41.5127581799295,19.430730994095168,5.16793289643164,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Puducherry,0.0052129843797597,1.42238377232297,36.64963339145876,6.7815972293502504,0.04231164143325,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Punjab,0.018861212266265,4.73214576968359,39.85763157825574,12.370131673861561,0.7127417317807501,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Rajasthan,0.0679440978626233,16.569093746495238,41.006526308655324,22.772592947705387,3.6460763598189803,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Sikkim,0.0140003058651559,3.6746111323491397,38.100101918010644,9.6617170566378,0.48106332152354,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Tamil Nadu,0.0141683236723599,3.8375615777637297,36.920120720554564,12.65565005944837,0.22072806433689002,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Telangana,0.0265171338018563,6.77804841268946,39.12207790108512,16.95514605719584,0.81366104375627,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Tripura,0.0634734071443708,15.699963832755682,40.429014882150774,20.6965746007467,2.82844003699397,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Uttar Pradesh,0.0982533917430205,22.93870373870043,42.83301831796835,21.47809924139034,6.585065545580051,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,Uttarakhand,0.0391229274878345,9.81099302456169,39.87662348743987,16.17114499300446,1.50887078398238,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IND,,West Bengal,0.0606670185661897,15.27069763484711,39.727732168404664,20.21336698545865,2.82583443997695,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -IRQ,,,0.032694322381288,8.63541898801166,37.860725028718015,5.24373156675885,1.3125265638064199,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG01,Al-Anbar,0.0359987578486941,9.79813553774314,36.74041628636819,4.6529020504309,1.3066779805949,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG02,Basra,0.0536091049804967,13.824068408980661,38.77954260242958,8.79170423568938,2.2509956259663,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG03,Al-Muthanna,0.0510629405229066,13.789784725323639,37.02954146132127,3.2528646697810295,1.7179374860106198,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG04,Al-Najaf,0.0485918859802776,10.70331350176984,45.398918729459545,9.78307064417017,4.39146125932105,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG05,Al-Qadissiyah,0.0301029717454744,7.7342013859159,38.92188765641967,9.22784786851652,1.16260701507978,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG06,Suleimaniya,0.0082902047888055,2.2659025479898403,36.58676669991823,2.69159721466915,0.27808980776091996,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG07,Babil,0.0354816702009306,8.80728797803242,40.28671514935216,8.0297147608067,1.67752029564003,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG08,Baghdad,0.0268550955674434,7.23494585441183,37.11858541562871,3.99798027101513,1.13554981236031,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG09,Dohuk,0.0197426534979803,5.14762476393969,38.352938303277625,2.94638005391839,0.97920477711928,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG10,Diyala,0.0139402725196041,3.9625960596305703,35.17964564095317,3.64258101364147,0.20517811659896001,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG11,Erbil,0.0122976412015198,3.45774872620586,35.56545653048024,5.31766558991831,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG12,Karbala,0.038046814983031,9.97689664518009,38.13491944051728,4.697251847131819,1.716987528023,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG13,Kirkuk,0.0216954460366335,5.97128136891018,36.332982313632165,1.9017269262687102,0.4421253046224,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG14,Missan,0.0659855739437146,16.980386152365,38.859878304077476,10.57298093005131,3.0439680207879802,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG15,Ninewa,0.0421866337114942,11.60848604892481,36.34120206002364,3.01002934237092,1.5371953168204,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG16,Salahaddin,0.0188958074573244,5.2033490551833,36.31470281337633,2.58125636182145,0.26939937744326004,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG17,Thi-Qar,0.0424490772049862,11.66345552536493,36.39494068689217,3.48024311434868,1.24710881032451,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -IRQ,IQG18,Wasit,0.0339315322887523,8.77054507556274,38.68805415902287,11.76754480744847,1.4947400611827901,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,,,0.0108102917138878,2.7756621958895202,38.94671235533186,5.0026432734068305,0.23234168942825997,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM01,Clarendon,0.0089224026504965,2.4844875309234697,35.912446890727814,4.93730393233357,0.23953484782266002,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM02,Hanover,0.0039121039440757,1.08156755051916,36.17068524474379,10.84381342863724,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM03,Kingston,0.0092340088493077,2.20935781470345,41.79499032639577,6.2165047057592595,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM04,Manchester,0.0079860746536054,2.22030944995407,35.96829556245255,3.53031420904977,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM05,Portland,0.0171135204665336,4.58783861359919,37.3019234281826,9.08798415554247,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM06,St. Andrew,0.0069056101249394,1.7938641082082998,38.49572603265181,1.54507482062533,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM07,St. Ann,0.0186791811603789,4.82163257501491,38.74036619291985,6.27387969169666,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM08,St. Catherine,0.0121221460376335,2.95750060823901,40.9878057298233,4.10652888910845,0.84150552885871,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM09,St. Elizabeth,0.0066968507828177,1.8364627639782902,36.466030862016865,8.172744813730711,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM10,St. James,0.0106309975452643,2.86416193441109,37.11730617441564,4.909411546477569,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM11,St. Mary,0.0236342235162742,5.75143838841405,41.09271789103061,9.810541726620869,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM12,St. Thomas,0.0142307574741803,3.5384726052407904,40.21723229707447,4.3071530670659195,0.71157805539565,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM13,Trelawny,0.0178371338124857,4.17401790606449,42.73372614566383,9.15355611049603,0.86346457944612,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JAM,JM14,Westmoreland,0.0087746398966349,2.3397904227344597,37.5018198697481,8.012523197792639,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -JOR,,,0.0015259204752518,0.43120323950129,35.38750026592064,0.69464072248794,0.0014041432383,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Aljoun,0.001603713055471,0.45080244350263,35.57463094056318,0.43264523806558997,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Amman,0.0010703844824839,0.30239083378815,35.39738520096072,0.17603136456171,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Aqaba,0.0002357477386603,0.060620847084039996,38.88888888891,0.12710403251893998,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Balqa,0.0021530818967281,0.5421571983439001,39.71324005851028,1.5964561780538,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Irbid,0.001771520763279,0.49797078050314997,35.57479339428376,0.7148649317154799,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Jerash,0.0020431012913619,0.59427962927339,34.379460286396416,1.41060782417578,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Karak,0.0004106779709873,0.12320339129617,33.33333333334,1.1055690156498301,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Ma'an,0.0061267527037649,1.8218099171817301,33.63003267235907,2.10324886621484,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Madaba,0.0024343797250999,0.6841656294314901,35.581730802857656,0.5140200290922601,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Mafraq,0.0031236270843461,0.8988575887520399,34.751078740770566,2.4097058385909103,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Tafilah,0.0005446440681306,0.16339322043916,33.33333333334,0.31121835404581,0,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -JOR,,Zarqa,0.0014073117756656,0.40635243561162,34.63278800205471,0.85723757349694,0.01000079437456,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -KAZ,,,0.0016106326619995,0.45297789690639,35.5565398002701,1.8000207693194,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Almaty City,0.0005722090479411,0.1716627143823,33.333333333339986,0.23299537381484,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Almaty Oblast,0.0019111729283641,0.5733518785091201,33.333333333339986,1.5085380855966999,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Astana City,0,0,,1.43661040314895,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Mangistau,0.0009325648971113,0.23980240211428,38.8888888889,0.83245906724413,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,South Kasakhstan,0.0043551177176231,1.17836177194128,36.959088637509716,1.88958335414533,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,,Zhambyl,0.0017714372549864,0.5314311764958,33.33333333334053,1.71523892079664,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ002,Akmola,0.0002944604150443,0.08833812451326001,33.33333333334,0.76652725209174,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ003,Aktobe,0.0026181421822007,0.78544265466005,33.333333333339986,0.78966573162472,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ006,Kostanai,0.0001648870722846,0.04946612168536001,33.333333333339986,3.2176895342847995,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ007,Atyrau,0.0039301680045255,1.1790504013574,33.333333333339986,0.11830078301445,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ008,East Kazakhstan,0,0,,1.0538152972011199,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ011,Karaganda,0,0,,1.67334693857941,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ013,Kyzylorda,0.0037130886052321,0.9547942127737,38.888888888900006,11.052573285151169,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ015,North Kazakhstan,0.0001989275919157,0.059678277574710004,33.33333333334,1.7775518881558399,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ016,Pavlodar,0.0013241305197881,0.37412205757334,35.39300859128148,0.7669144803114201,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KAZ,KAZ020,West Kazakhstan,0,0,,3.45925528745168,0,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00 -KEN,,,0.1133519774436132,25.35228486527062,44.71075409810137,26.40443085356011,7.459407203449491,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE001,Mombasa,0.0518291193248927,12.88661411634367,40.2193461036127,16.89299637920901,2.28012383735898,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE002,Kwale,0.2105412540752634,44.51226006756918,47.29960998512854,27.279448961515552,17.29017828723524,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE003,Kilifi,0.2026401659201428,46.358103403934045,43.71191896149624,23.87722563086917,13.186947031319901,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE004,Tana River,0.3779731046092595,67.28609112572347,56.17403214923272,18.38759098421991,44.42312691573559,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE005,Lamu,0.1389700365907154,30.25995187668255,45.92539907434607,31.44098061890953,9.9740501543732,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE006,Taita Taveta,0.0793462408836816,19.26834206292386,41.179589102458195,25.340056405423628,2.74005635111794,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE007,Garissa,0.2910160126064509,55.25008371319675,52.672501659384885,24.42398080058411,30.367925488532034,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE008,Wajir,0.395616404435388,73.11241862391675,54.110698549093385,18.158885724708878,42.8622151574757,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE009,Mandera,0.4612086651349641,81.33587222971273,56.704213342963364,11.32500457162625,55.90113300321373,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE010,Marsabit,0.3466323408670655,63.56062795351668,54.53570111367768,13.70078549186258,39.90740621111322,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE011,Isiolo,0.1962241030711881,39.49358281370089,49.68505997463344,20.75833296599609,20.35885576997118,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE012,Meru,0.1234236466272709,29.16700819907697,42.31618333455839,28.46240765916508,6.40925521652754,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE013,Tharaka-Nithi,0.1051688611834747,25.643535769128288,41.011841007543595,30.50421640645689,5.6724646121995095,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE014,Embu,0.0761129973767158,18.7291471952995,40.638795019891774,27.13324522614316,3.89429736793419,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE015,Kitui,0.1510383223430926,37.08114396192893,40.73184001501221,32.26733427145976,8.01340790589921,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE016,Machakos,0.0722943405218927,18.79200643831172,38.47079382354002,24.64245826160843,1.4464258314026301,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE017,Makueni,0.1018920686761745,25.57046480504604,39.84756219842639,33.31580715613414,2.36370792106902,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE018,Nyandarua,0.0570317514359348,14.87965508162579,38.32867840220352,33.81420803839031,0.4096047456449,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE019,Nyeri,0.0399527900283467,10.31722034698328,38.72437408979905,16.198786346404688,1.3266257876113499,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE020,Kirinyaga,0.0405829102732997,10.119862886998481,40.10223332713203,18.213587359732948,1.8937318970550399,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE021,Murang'a,0.0452641606007773,11.378973803617889,39.77877213003672,25.62368578313038,1.8416533420105001,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE022,Kiambu,0.0221952110508226,5.87690691836687,37.7668242140381,13.68733398141449,0.22131434884223,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE023,Turkana,0.496784940645375,79.55187354354372,62.44792467061801,11.101546690679049,64.88549481665073,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE024,West Pokot,0.3546122507491979,65.78637328966298,53.90360237488851,18.0991182170344,37.01214316781509,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE025,Samburu,0.4171855666112636,70.15995987573093,59.46205889373272,13.27090624783122,53.654910942570176,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE026,Trans Nzoia,0.0894302556951499,22.57281407495195,39.61856744941104,29.486557139510673,2.9086021677327603,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE027,Uasin Gishu,0.0642033585698896,16.076020484397908,39.9373455838777,23.2148099223031,1.87828092154643,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE028,Elgeyo-Marakwet,0.1385738669554638,34.23591161356346,40.4761726574163,34.289922321073206,5.67024544768389,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE029,Nandi,0.1076388715640247,25.7707971780592,41.7677694718992,32.356250028374575,5.34631304338318,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE030,Baringo,0.2159130683479508,46.89168925272807,46.04506081754978,25.68839096851004,17.55207009813742,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE031,Laikipia,0.0945386780778138,21.92607457671919,43.11701018211153,30.042323159259997,5.15940145249369,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE032,Nakuru,0.0726771517576394,17.73244534954664,40.98540856887376,22.70412353159707,4.1370089970945,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE033,Narok,0.1934341576203462,43.3427442772441,44.628959436217194,33.18024602481383,11.61095590974041,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE034,Kajiado,0.1108356392246289,22.51201024597028,49.234003544605194,15.40155420760283,10.67976304042213,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE035,Kericho,0.1099466986246576,26.495164971379698,41.496891505836246,32.00968019461606,6.13477344109526,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE036,Bomet,0.0957391191793931,24.37929126852305,39.27067367335865,34.1548871950827,1.76285350846259,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE037,Kakamega,0.0960468342542093,23.99908448165975,40.021040939127886,39.926568108581975,2.8976480049649402,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE038,Vihiga,0.079400053852078,19.59083348387917,40.52918622243123,36.049711671543,2.12167821774053,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE039,Bungoma,0.115271063739286,28.566645729175548,40.351627150106,39.974190218477865,3.62311807177169,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE040,Busia,0.1220621541334287,29.217260455511777,41.77741247140161,39.624236098558306,5.28126113497862,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE041,Siaya,0.1031746515858287,25.261175701093357,40.843170882724635,41.00488662226988,2.78598510625409,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE042,Kisumu,0.065381437480619,16.581841708069838,39.429539029310625,33.045495641656906,1.84803364140752,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE043,Homa Bay,0.1079776619396073,26.62539127486459,40.55439442181732,43.37600346343383,3.3816934065562703,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE044,Migori,0.1393361394283189,33.452108744066464,41.65242331786738,39.4943756570217,6.29757550390094,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE045,Kisii,0.1085232985259107,26.70199703604451,40.6423902974063,39.1991646215525,6.13222264543815,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE046,Nyamira,0.0985398740587193,24.82001078339947,39.70178535322244,38.16660053936102,4.5826662104811,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KEN,KE047,Nairobi,0.0102833395641984,2.67122438697556,38.496726873033296,9.211301367719079,0.3153329700082,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -KGZ,,,0.0014259649128426,0.3930310792486,36.281225280422156,5.23837659265445,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG02000000000,Issyk-Kul,0.0016381540685878,0.4582987811465,35.744237950833316,1.20998744992302,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG03000000000,Jalal-Abad,0.0024062413907004,0.72187241720983,33.33333333334671,10.11722539507847,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG04000000000,Naryn,0,0,,2.21613427098131,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG05000000000,Batken,0.0017473192746375,0.48440577472861995,36.071396457162,13.420156274620028,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG06000000000,Osh,0.0030461287546804,0.78329025120331,38.888888888900006,8.314977875787891,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG07000000000,Talas,0.0019205328078202,0.57615984234595,33.33333333334,1.9645476604793402,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG08000000000,Chui,0,0,,2.3529172285664,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG11000000000,Bishkek,0,0,,0.6269030977171299,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KGZ,KG21000000000,Osh City,0.0008516619037945,0.21899877526137002,38.8888888889,1.32878138857498,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -KHM,,,0.0703679147927833,16.64469696411422,42.27647697311385,20.521149712887528,4.092923144303899,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH01,Banteay Meanchay,0.0411257986622819,10.35946520916308,39.69876613505651,24.51061769112377,2.01195244198982,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH02,Battambang,0.046351232549275,10.66283690594544,43.469887946452864,23.34454344618181,2.41858407311107,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH03,Kampong Cham,0.0926478908849333,22.07121700914805,41.97679305428999,31.28757326057194,4.8111905406381394,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH04,Kampong Chhnang,0.0903103794765975,21.1889061471845,42.62153923816291,25.228928963253487,6.15139236696065,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH05,Kampong Speu,0.098696157417213,23.02174429928116,42.870842510528064,23.20050194882128,6.824689339353821,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH06,Kampong Thom,0.0747580833351034,17.11046587805245,43.69143649735185,29.842684423876598,4.51688854815979,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH07,Kampot,0.0785657619724302,19.354870606459933,40.59224345638759,16.607074710556972,4.9967223032676,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH08,Kandal,0.0514435547742599,12.83625800304089,40.07675349161179,19.65328141164309,1.9333742517763202,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH09,Koh Kong,0.0992393927998685,22.55783176731434,43.993320733805405,21.3844881674727,9.13312862737129,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH10,Kratie,0.1103539017823642,26.069208903720444,42.33112795632827,16.85052747765788,5.059737726925309,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH11,Mondul Kiri,0.1570571788004723,34.88813647272815,45.01735967561435,19.36277030436547,12.501516952565838,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH12,Phnom Penh,0.02219019362308,5.7513290272569195,38.582723259120435,2.97501534681667,0.69259291581301,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH13,Preah Vihear,0.1251577142140665,28.71451919154,43.58690924936017,24.25688790407471,8.39771981232119,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH14,Prey Veng,0.0467129093354919,11.60366993214488,40.25701317656946,23.41272298276979,2.1187413296824,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH15,Pursat,0.1113678699708602,26.4383551779273,42.12360005808468,31.04065992623918,6.77298834000376,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH16,Ratanak Kiri,0.2312833897949758,49.06134720787526,47.14167118465318,18.43469124940692,19.75100439460263,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH17,Siem Reap,0.0953689664454771,21.83322576646189,43.68065784945703,21.13500912980514,6.22875751949565,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH18,Preah Sihanouk,0.030726447455987,7.23873987912597,42.44723248668118,17.37383660358284,2.27410643156406,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH19,Stung Treng,0.2008257369411279,43.78656659968256,45.86469151079406,23.89698048681441,16.61793575312699,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH20,Svay Rieng,0.0389662947525326,9.39909523764333,41.45749539431497,17.17047479453473,1.76224879302933,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH21,Takeo,0.0439580491769733,10.549204981538999,41.66953742381481,18.31599763763225,1.92406031656331,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH22,Otdar Meanchey,0.1001207791873466,24.98394205339557,40.07405195439891,26.948596234609663,4.26149593689852,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH23,Kep,0.0750374753832783,19.19946344814591,39.08311062230474,18.55331338813943,2.56904784908656,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH24,Pailin,0.0604694664048649,14.63977351743298,41.30491932327919,13.522993056581658,3.5868161109759695,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KHM,KH25,Tboung Khmum,0.1107036283433326,26.615757491644743,41.59326608610889,32.6421856985011,6.3800280346028,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -KIR,,,0.0801574049759755,19.80259102621664,40.47824088769756,30.218356645833737,3.53265864137043,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -KIR,,Central Gilbert,0.1178417742470099,29.1956305858994,40.36281179140687,46.02780536246424,3.47567030784518,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -KIR,,Line & Phoenix Group,0.1151080838182392,26.60706683695165,43.26222222224742,38.86760323541894,7.705406555981289,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -KIR,,Northern Gilbert,0.130650335374817,32.28346456692816,40.46973803073721,36.84383202099621,5.3477690288713,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -KIR,,South Tarawa,0.0477103929959414,11.99645861000468,39.77039770399607,20.09738822487895,2.00678766415823,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -KIR,,Southern Gilbert,0.1041270846527952,25.839138695376867,40.29820261440276,48.353388220392915,4.87650411652943,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -LAO,,,0.1083332502467847,23.07234577094802,46.953721707480014,21.18138687754113,9.56048422705744,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA01,Vientiane Capital,0.0081439385453285,1.9646383372663798,41.45260932177497,13.11102511586292,0.40822991408349,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA02,Phongsaly,0.16562760789877,35.906778763827255,46.127114043887566,23.33331955017258,14.118710171556689,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA03,Luang Namtha,0.1057510662909534,23.58182848397511,44.84430304580321,25.63259483680284,6.83613306547026,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA04,Oudomxay,0.1387181526064865,29.0282768909162,47.787250041663896,21.212315801147362,11.76653758211424,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA05,Bokeo,0.1239018814909131,26.0368191903493,47.587180517364494,21.26934935090425,10.82603881485072,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA06,Luang Prabang,0.1371160174293843,30.77726626686254,44.551070988723666,22.49033819409501,10.65869894869045,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA07,Houaphan,0.1238941827986067,28.130172470864416,44.04316501327142,25.4604134506145,9.17228106561759,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA08,Xaignabouri,0.0429953220698709,10.13560599642214,42.42008034354157,23.27978807549187,2.24678711368202,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA09,Xiangkhouang,0.061366769309008,13.835976872853609,44.35304414927901,27.421719255979838,4.44617465242795,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA10,Vientiane,0.0666054623916043,15.49317889281783,42.990184811253016,20.62109099602571,4.62042982455392,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA11,Borikhamxay,0.0475597330804085,10.5901775943816,44.90928755117419,23.16544950479283,3.51321843902713,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA12,Khammuane,0.1135370089812776,23.58937396138166,48.130573183989526,22.070460235700757,11.18790811614584,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA13,Savannakhet,0.1748524673438575,34.554978107863185,50.60123806128788,17.49006517458638,19.28807440522749,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA14,Saravane,0.2370773741912589,48.760477806656425,48.62080620524494,20.20018437596886,23.15781111195134,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA15,Sekong,0.1755683720569785,36.18984215077073,48.513163258779066,23.15867651295418,16.10414940824359,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA16,Champasack,0.0849003369858636,18.72740082292937,45.33482130735079,26.077607025526923,6.24743725092827,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA17,Attapeu,0.1151253071031016,25.545104132977297,45.067464397015826,21.16185441760438,8.98347151287478,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LAO,LA18,Xaisomboun ,0.1068353782488307,24.61820656124356,43.39689732599028,25.727859559330803,7.12021460258682,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -LBR,,,0.2592937311100503,52.32307452422745,49.556287253339434,23.31370775147791,24.861870302926338,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR01,Bomi,0.3041567819979963,65.44587652752372,46.47455242960663,24.671012806235932,21.10242800826918,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR02,Bong,0.3708250510786592,71.07695315560002,52.17233359269883,19.25260853982873,38.45884250736715,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR03,Gbarpolu,0.3955725273922618,76.13101076406126,51.95944772337078,19.65969478888518,40.93858932747014,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR04,Grand Bassa,0.3908408921553293,71.9942505544004,54.287792309192994,19.01235166901631,47.86993176050786,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR05,Grand Cape Mount,0.360756620363856,73.33306518029299,49.1942644804111,15.848633130415529,36.77870397762464,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR06,Grand Gedeh,0.2972645568601683,62.0451007461021,47.91104427029938,24.23637096774059,25.705781935375487,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR07,Grand Kru,0.3356510183753182,66.91574767264505,50.160243298384486,25.021308824112797,33.007109057784874,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR08,Lofa,0.318007633579904,66.267001455578,47.988837067432435,25.852213576177206,29.37779277542728,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR09,Margibi,0.2546060450631102,50.84444733740935,50.075486782955196,25.05297570359688,24.7275331590934,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR10,Maryland,0.2823623003448181,57.04766381831738,49.49585687576477,27.92405198583401,26.33443942524615,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR11,Montserrado,0.1222556788435156,26.424203217305042,46.26655261395022,24.66212534624111,8.757865626404671,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR12,Nimba,0.3262240931904132,65.76636310330616,49.603486918986015,21.00500624237284,33.31277609308505,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR13,River Gee,0.2801505134658623,59.90261414475153,46.76766072159943,27.52945036275909,23.15220501679813,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR14,River Cess,0.4152499786892729,76.01405219623761,54.628054509877344,20.431766533184962,48.12473076128387,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBR,LR15,Sinoe,0.2666470817276507,54.431493153793085,48.98764782627852,36.50175997278765,24.673065255763348,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -LBY,,,0.0074214647664764,1.99851894306227,37.13482322616732,11.36298327008142,0.09290126549271,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Ajdabya,0.0129186311604908,3.4884557159234495,37.03252158690793,6.12934336694797,0.15028125425112002,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Ben-Ghazi,0.0030865430990162,0.86572761585576,35.65258913411451,6.09929691401091,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Derna,0.0094090726907746,2.6437254781469,35.5902031755952,8.54421829754396,0.23028809812346,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,El-Jabal El-Akhdar,0.0152820386186954,4.045542152464001,37.775007756099214,13.24436804878967,0.11520355207731,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,El-Jabal El-Gharbi,0.0056641299966493,1.50046614077028,37.74913570353259,13.82826631374472,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,El-Marj,0.0066382634721382,1.68108061318813,39.48807344550194,9.275022042325421,0.17320666833247,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,El-Merqab,0.008458591297967,2.32644915814529,36.35837588950533,10.68800516373687,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,El-Wahat/El-Kufra,0.0040382269137778,1.14503739438184,35.267205539238525,5.88250624400989,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,El-Zawya,0.0019804656579604,0.5806928210956199,34.105220281935175,6.11976323228059,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Jfara,0.0027232901363624,0.71854362964659,37.900136108670516,12.67875463960258,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Murzuk,0.0035307239752762,0.87487773386386,40.3567703075821,5.69189799657441,0.27021055340724,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Musrata,0.0044036900143891,1.27236188170855,34.61035793115564,18.72503585543068,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Nalut,0.0032967039766512,0.94555813469739,34.8651643476819,17.11379961485803,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Qasr Ben-Ghesheer,0.0048497419999021,1.39565021587207,34.74897896871461,12.88246221465356,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Sebha/El-Shate,0.0067381978848683,1.8874619233845198,35.69978181486004,8.046285363810151,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Sert/Jafra,0.00579069335981,1.512692336028,38.28070799257891,12.72572017081311,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Tarhuna,0.0034682531498756,0.98595021490776,35.17675738018972,9.35888441425293,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Tripoli,0.014144890455468,3.72498110567862,37.9730528938914,12.54682242444268,0.27729839265224,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Tubruk,0.009184473760712,2.60129324682826,35.30733711745349,15.11954176493673,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Wadi El-Hayat,0.0151526022279565,3.85933646949646,39.26219532222722,6.398928892940289,0.76408500979226,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LBY,,Zwara,0.0029980877004225,0.7679022496889301,39.04256956711666,14.92397971843312,0,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -LCA,,,0.0072018620576616,1.9211311777976299,37.48761219896392,1.6434137392954602,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -LKA,,,0.0111846990586717,2.92071792370066,38.294348687052434,14.32523191366366,0.26126484444908,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK1,Western,0.0036888103801409,0.99040994906354,37.245288010573255,8.22636448880886,0.01127126519669,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK2,Central,0.0190562423575101,4.99251152658211,38.16965119869456,17.15690836390037,0.5900519468926,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK3,Southern,0.0081212076925171,2.09488850405977,38.76677769140803,14.356551065688869,0.19344655914800998,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK4,Northern,0.0110999256640438,2.8720243325245898,38.64843879747591,14.28522859203686,0.14713822419105,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK5,Eastern,0.0143345256689566,3.7787320111538203,37.93475066939089,16.47358198794819,0.35955221619166,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK6,North-Western,0.0102211798241415,2.69239644706843,37.963130709337825,16.69085886142966,0.10683334074637,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK7,North-Central,0.0108826828324728,2.94727380042083,36.92457358701748,19.61429331940864,0.08973276205142999,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK8,Uva,0.0215119599886031,5.49127579141771,39.17479435693995,18.22393012999409,0.8426064454175,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LKA,LK9,Sabaragamuwa,0.0173514663801189,4.43498807051989,39.12404296069472,16.38557106354058,0.5074663931206,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -LSO,,,0.0843591908637076,19.60454173034563,43.03043244980782,28.5972314876404,4.99678008243935,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Foothills,0.1544967653798338,35.509922458660995,43.50805484289406,39.39987395378082,11.73504359628186,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Lowlands,0.0408620381212661,9.84514079328882,41.50477781802848,24.13759534179574,1.70225035987909,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Mountains,0.1847796958712479,41.61962511870951,44.39725137941782,33.82296518283833,13.05411314378662,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -LSO,,Senqu River Valley,0.1162578537997074,27.780227353002513,41.84913691397208,39.814562936443544,4.86423710819024,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MAR,,,0.0266967234413385,6.35970064208804,41.977956107967564,10.8642237581342,1.4231562843282899,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,,Ed Dakhla-Oued ed Dahab,0.0164995325165791,4.2801099502884,38.54931931238663,12.08796474482087,0.15518083058099,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,,Laâyoune-Sakia El Hamra,0.0101324420099471,2.6908143872811903,37.65567055773394,13.678719134680389,0.046764916420019995,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA001,Béni Mellal-Khénifra,0.0702073347380015,14.22421373399031,49.357620780285025,10.500409766270991,6.3547909252038695,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA002,Casablanca- Settat,0.0138574111650959,3.4795207984877,39.82563107862082,8.77115408269418,0.50434973301623,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA003,Drâa-Tafilalet,0.0402564906593512,9.06799562417589,44.39403405977021,16.24844384780669,2.3767183263095,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA004,Fès-Meknès,0.0233773352287608,5.76000191955369,40.58563791341961,11.13719732539065,1.12071709969024,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA005,Guelmim-Oued Noun,0.0168623028641578,4.80405925564892,35.10011423012734,7.36299664033261,0.04651625595684,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA006,Marrakech-Safi,0.0386900903908339,9.68273367102572,39.95781739469797,12.97781015058054,1.49567776935893,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA007,Oriental,0.0420004848490287,9.16925123271371,45.805795678474745,12.937755464827031,3.4988176011548,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA008,Rabat-Salé-Kénitra,0.013575487618677,3.67426766957202,36.94746501758874,8.52874793364008,0.33033545792468,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA009,Souss-Massa,0.0299792130050608,7.40975951357737,40.45909040654822,8.10242129182513,1.56345097278911,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MAR,MA010,Tanger-Tetouan-Al Hoceima,0.0138517121662293,3.6282823422435397,38.17705145202152,13.0872592446171,0.18021997876940002,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -MDA,,,0.0035339051267231,0.94363318057645,37.44998797694088,3.6997331929494495,0.06327383758665,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,,North,0.0059474516760508,1.50893320533898,39.41494331894397,4.7163729786779305,0.19770108085683,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,MD004,Center,0.0037953127634815,1.05139943065153,36.09772511603581,4.53163447933112,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,MD006,South,0.0022727253339693,0.6722520129738799,33.807638952472004,3.5739782237993403,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDA,MD010,Chisinau,0.0001832774287466,0.05498322862394,33.33333333334999,0.6421292937793399,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -MDG,,,0.3859274117580535,68.41886184484444,56.40658165773541,15.37196338531605,45.79036047057389,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,,Antananarivo,0.1289593640590467,28.17914455439725,45.76411601498495,21.65359323133025,11.29024812363828,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG11,Analamanga,0.2216975548385908,45.201908875772965,49.04606029977085,21.18821392310243,19.93053798552658,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG12,Vakinankaratra,0.3790122976564933,68.5709957656782,55.27297561080481,17.80459165494157,41.521468500391165,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG13,Itasy,0.3938629382311376,73.12443773161262,53.8620125431564,15.00740224022891,43.971634159892595,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG14,Bongolava,0.4246640781444631,75.41775663410513,56.308235234939765,13.92719760727352,49.56266940518449,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG21,Haute Matsiatra,0.4085396591576406,72.7275521761964,56.17398728997164,18.79569494109801,47.51902307266676,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG22,Amoron'i Mania,0.4045992643593222,73.85294550157198,54.78444517161613,15.57280706159454,46.04746182047104,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG23,Vatovavy Fitovinany,0.4643049150063511,79.77236610174184,58.20372864635552,12.17199747734431,59.798362523567405,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG24,Ihorombe,0.484977386891855,83.3519110426233,58.18431525149488,7.33724024927431,63.77756341229257,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG25,Atsimo Atsinanana,0.579560786322343,92.31940522751356,62.77778598053825,5.08154979869349,76.99956543278692,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG31,Atsinanana,0.3865835193969269,67.17837501713008,57.54582770100504,13.929873401675492,51.16223852557709,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG32,Analanjirofo,0.2984099390026937,60.112701028156955,49.64174523831787,22.04694543186027,31.32913861944035,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG33,Alaotra Mangoro,0.3320884500274085,60.976583192046206,54.46163635989465,15.357570370373729,38.49501972775179,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG41,Boeny,0.3402756027148037,62.435589719843584,54.500262469156354,19.442952242068003,39.61814449640346,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG42,Sofia,0.3871599670952093,73.50507581810808,52.671188048734955,17.78225255794684,45.54873179099762,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG43,Betsiboka,0.468503451469409,82.78054269737396,56.5958419941926,9.50984268189535,57.033092880437245,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG44,Melaky,0.4698744014669063,79.74198952701047,58.92433889020901,9.2117773792217,56.942154321342066,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG51,Atsimo Andrefana,0.4541789833831978,74.30535303551072,61.12331949572255,10.91036539430257,55.70246048364995,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG52,Androy,0.5901086285773781,92.23335981588305,63.97995581591711,6.11466864140848,80.70756711166823,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG53,Anosy,0.5839120376515263,89.8423957553216,64.9929281985938,5.54424343055449,77.30632525519073,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG54,Menabe,0.5531765472013616,88.51011708638396,62.4986798584249,5.25830047819036,69.63313527675709,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG71,Diana,0.2297887293539565,48.33714348643407,47.53874821304807,19.53619908049671,20.79688131513807,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDG,MG72,Sava,0.2873471415965632,58.84536540612062,48.8308874647035,24.73204865760191,28.87129470412728,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -MDV,,,0.0026540936227336,0.7719890360692,34.37993933498948,4.8432957329045,0,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00 -MEX,,,0.0199011677274613,5.00236330618017,39.78353132183428,3.1276887773111097,0.90688899388611,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -MKD,,,0.001422062911959,0.37185662716426,38.24223660617487,2.1820304203437098,0.0523396570505,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,East,0.0011471985135645,0.34415955406928,33.33333333334,7.642297902500831,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Northeast,0.0003556868360943,0.10670605082823001,33.33333333335,1.12563075904832,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Pelagonia,0,0,,1.46196271547405,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Polog,0.0006444690438979,0.16572061128798998,38.8888888889,0.02087565839868,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Skopje,0.0018408980820507,0.53478139548117,34.42337556253836,2.05812610074125,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Southeast,0.0082492960885795,1.76667314890689,46.69395747415785,4.48642924264557,0.8201431574708901,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Southwest,0,0,,2.18451900800685,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MKD,,Vardar,0.0003567956977631,0.10703870932887,33.33333333335,0.46471504291013,0,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00 -MLI,,,0.3760629216023918,68.33225113186045,55.03446986938935,15.26012002241845,44.70445647765907,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML01,Kayes,0.4206639620691331,75.06257701765419,56.04176925209963,12.57658640737525,50.80206406636005,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML02,Koulikoro,0.3526717720563716,64.30487079363267,54.84371054692993,16.9945666098632,41.07607134914591,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML03,Sikasso,0.4163965513263391,77.80017284231538,53.52128872133582,11.36493072736398,49.5029676967096,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML04,Ségou,0.4236288655901771,76.19455689448438,55.598310805432746,11.982124191461201,52.90421124277241,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML05,Mopti,0.4957622913446972,86.37829726939714,57.394311651977915,8.52486924409293,61.30879314507541,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML06,Timbuktu,0.5354549479289583,87.49841355468294,61.19596072382741,5.64086718746159,69.56658734133651,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML07,Gao,0.4726270416715442,83.73137797315933,56.445630432960016,10.12674377834348,58.63352508892334,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML08,Kidal,0.475961963854973,83.82945781258078,56.77741169686327,11.15128842514368,62.937180872403566,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MLI,ML09,Bamako,0.1103048677977113,25.465673163315678,43.3151195691186,32.43606999579169,6.73206993071071,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MMR,,,0.175846224535058,38.315858119338905,45.89385000522914,21.91659510994889,13.84482257274561,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR001,Kachin,0.1210889864023325,28.109687828833952,43.07731453286492,19.95821987236595,9.56805558400531,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR002,Kayah,0.1294365831865205,29.759013343613628,43.49491755387712,20.74456778451766,8.453669665961169,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR003,Kayin,0.2300825677031219,45.00561663501972,51.12307860794654,18.802772333486658,23.597494291338638,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR004,Chin,0.1849489261910936,41.034776502808,45.071264413597476,23.37062022025087,15.123323183565422,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR005,Sagaing,0.1574089971553656,36.36557640977429,43.28516489925827,26.85233774926332,9.00548150715542,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR006,Taninthayi,0.1876667560305747,40.53689317327683,46.29529826777412,20.84910027245891,16.25857491072385,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR007,Bago,0.1778934187351913,40.71269035211711,43.694832544010595,23.95046464802433,10.52215649870934,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR009,Magway,0.177422502751209,41.40299621577391,42.85257565094134,20.834759576798458,11.52420255003156,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR010,Mandalay,0.1366057860067486,31.705100082402037,43.0863758990535,20.48861100072891,9.17977017780076,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR011,Mon,0.1507572186300505,34.410458657455116,43.81145282914983,19.74613086330481,10.35080571332675,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR012,Rakhine,0.3018989131069977,58.558693207881404,51.554926616150155,20.790032543586,30.2144922679574,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR013,Yangon,0.0676728328317799,15.805277587191291,42.816605060212595,16.32236238611542,4.62320499557623,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR014,Shan,0.2343387785891677,46.82947372655364,50.040873821798016,21.66880591171382,23.08667529839866,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR017,Ayeyarwaddy,0.2371169220300248,50.830418317755374,46.64862692015233,26.22847242413594,20.40897243745399,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MMR,MMR018,Naypyitaw,0.1459785544110494,33.76659661784305,43.23164577797897,22.98646630804551,7.6693241445238,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00 -MNE,,,0.0048989004059962,1.23576477538312,39.6426609949079,2.88806879116208,0.05945725353869,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,,0.0281268202333581,7.25844858539946,38.75045734970956,15.504560939139362,0.77629191250359,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,Central,0.0185130875229727,4.92914844196122,37.558389123308054,17.51555139244186,0.31166047937553,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,Eastern,0.0256252987805539,6.903514480665949,37.11920769098167,18.37680126454114,0.29905210523772996,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,,Western,0.0853926834977924,21.27373348315112,40.13996112408935,28.835788591822194,3.21980925050082,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,MN11,Ulaanbaatar,0.0086114531830282,2.3366856100656404,36.85328118568038,8.010951888460049,0.19550133805303999,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MNG,MN62,Khangai,0.0496809506761639,12.79151903490704,38.83897646603856,23.123556508308273,1.23208992301199,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -MOZ,,,0.3343739348064392,60.67129520144127,55.112377887475205,16.85374274227483,38.81662577455273,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ01,Cabo Delgado,0.4254370318638339,74.43621010993061,57.15457990614111,14.33341717459913,50.3250761576395,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ02,Gaza,0.1718299496177459,38.35335810338371,44.801800445887466,23.44072039384494,12.73463227829762,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ03,Inhambane,0.2102020499011548,46.570117032556354,45.136680621654065,25.62164318821864,16.799578395375057,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ04,Manica,0.2739891727633894,53.25463603663635,51.448886548562534,24.85805213262664,28.20101799965608,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ05,Maputo,0.051611789394213,11.55835824635499,44.6532182980997,16.84272608296677,3.56786337451249,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ06,Maputo City,0.0143021488218048,3.8957404655872696,36.712273181804086,10.52754817184282,0,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ07,Nampula,0.4363528991232313,75.09148390341136,58.10950542467679,14.502086783429998,53.37270305858943,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ08,Niassa,0.4259161362345228,75.1984001950597,56.638989011697646,15.089470562126639,50.44884298685166,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ09,Sofala,0.3048211203873214,56.82575970494801,53.64136299629262,15.36924001299692,34.09645541860031,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ10,Tete,0.3495530545637683,64.40986665013097,54.27010996040585,20.568407715471622,41.5747445776434,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MOZ,MZ11,Zambezia,0.4223152608886383,76.42743106676107,55.25702682846114,14.146560487805552,51.22087688225162,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -MRT,,,0.3270372484610207,58.4480827438349,55.95346042304803,12.28209007105384,38.00118397702751,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,,Tiris Zemmour & Inchiri,0.0721634246027336,16.16544696208391,44.640537791496286,15.57150864422959,5.04171841023984,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR01,Hosh ech Chargui,0.5233325522189111,87.23491561717711,59.991179966919525,7.2407113106800205,64.78836506747585,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR02,Hosh el Gharbi,0.4819411683227595,81.15014133641786,59.388826733500444,8.75688616833303,61.041051843363945,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR03,Assaba,0.4329060110814779,75.14195794705883,57.611755523655795,11.76305162668333,52.85766378413578,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR04,Gorgol,0.4762154489412362,80.38476778354713,59.2420009501733,10.09779816140353,59.235689091706654,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR05,Brakna,0.3342703204881174,64.00014618175143,52.22961827912652,15.60402497836025,37.558582092508104,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR06,Trarza,0.2268554132092348,48.894220966169534,46.39718329211107,19.38187285263427,18.29275101255801,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR07,Adrar,0.1913293131926617,39.96336037382452,47.876182433842565,20.14820602983002,16.48506293966699,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR08,Dakhlet Nouadhibou,0.0468378661016624,11.7719080629946,39.787828660418164,11.566887145106811,2.25854163317101,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR09,Tagant,0.3707985541727156,67.8704312061401,54.63329871096651,12.63476642226383,41.24676899218526,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR10,Guidimaka,0.5252188899393447,87.09471218069179,60.304337288547906,7.70820907775758,66.15101505169952,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR13,Nouakchott Ouest,0.0774716994201087,19.76122338172531,39.203898424503755,18.57224495405673,2.66186695647749,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR14,Nouakchott Nord,0.0917998259193934,20.529728724292102,44.71555720596051,13.609239392878111,8.00785557637706,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MRT,MR15,Nouakchott Sud,0.0995710578922055,24.224369514486092,41.10367365089205,15.83122618023664,5.73965383184714,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -MWI,,,0.2310952042357725,49.88338698463221,46.32708767489406,27.53231424488845,17.51446820384081,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Balaka,0.2391080992252245,52.121140547607105,45.87545412726046,29.003283877705332,16.63463914467982,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Blantyre,0.1137067663963866,26.226039502801253,43.35643831553042,24.401231440985168,6.474980331707581,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Chikwawa,0.2152026090356788,48.063235477740854,44.774890183026464,28.370636780221442,14.023808037436162,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Chiradzulu,0.1948087051761981,44.17141025406828,44.102894622490766,35.0516530578954,11.879117808421551,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Chitipa,0.1346767241954198,31.43012937949827,42.849560868581335,37.95424119092147,6.645377049276339,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Dedza,0.318156467593233,66.28675165648883,47.99699180342754,22.34961989349387,25.89433592120054,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Dowa,0.2411052859468312,52.36187428588899,46.045961729793675,27.47730202381689,16.57569195498361,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Karonga,0.14311188666661,33.55449297580337,42.65058833397065,35.49463899019156,8.595341484327811,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Kasungu,0.1886743015691452,42.05933286975745,44.85908089731268,32.1784467124483,14.450832018079602,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Likoma,0.0856605214691323,20.45305724301754,41.88152433708944,29.923904899710518,2.94999912053313,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Lilongwe,0.2305725810515384,49.58858692769037,46.49710655957131,24.03306221520257,17.16368055814123,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Machinga,0.2887135461606788,60.43654817847146,47.7713494338056,26.024941031687387,24.78538071731617,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mangochi,0.3778532250889358,74.13254017330173,50.96995519182498,16.43277281067528,37.97324590036459,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mchinji,0.2771887191848483,57.53140173959264,48.18042161383482,30.297470352391347,23.621123827952868,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mulange,0.2045810979210247,46.519983415116016,43.97703586767591,31.93575765572324,12.47978954709831,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mwanza,0.2658683311792536,57.25801475003786,46.43338270457203,24.71136763404329,21.551430982245652,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Mzimba,0.1547549322270796,36.14247054644928,42.818028177734305,33.7122284588167,9.21326661701557,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Neno,0.236972347857376,51.606804130620276,45.91881862275043,32.48683143128323,17.10185490230144,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Nkhata Bay,0.1714591584412081,39.69729527564703,43.19164750410406,30.88580664197463,9.87877568738536,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Nkhotakota,0.2433900081044745,52.11873480043009,46.6991397693073,26.594177653401356,20.19769153736075,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Nsanje,0.269800518681296,56.58258119793932,47.68261061429305,30.40497632436831,24.88785246158136,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Ntcheu,0.2262277381300233,49.52292005281752,45.68142142845079,34.206037826890416,16.62191044199865,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Ntchisi,0.2388818611802484,52.85908174077942,45.19220790700137,30.609160755244258,16.75220289173047,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Phalombe,0.2425735742127438,53.14324500338235,45.64523190055575,31.701956547271138,16.39948557897449,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Rumphi,0.1053247325869881,24.5959013459871,42.82206661402642,40.53573232466796,6.20484274411464,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Salima,0.2612414754365124,56.458103968307874,46.27174082628732,24.69568280207318,19.62295108960803,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Thyolo,0.2697754934773359,58.52531323261244,46.09552321490304,26.785063778652056,22.41361552834186,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -MWI,,Zomba,0.206849979276619,46.21208347262234,44.76101567659553,31.03217126200554,11.78638697729128,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -NAM,,,0.18473453488536,40.88101083216059,45.18834811687963,19.218428980779382,13.07653816842678,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA01,Zambezi,0.1967093886116512,44.65344770065219,44.05245255200713,33.14023622711791,10.59592612322761,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA02,Erongo,0.0432209122813191,11.15176567875634,38.75701259008088,14.680219362308812,0.35086095971941,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA03,Hardap,0.0823071944735708,19.2346818409742,42.7910350449561,21.3927129565938,5.22050666694635,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA04,Karas,0.1031414757511206,24.51584908471053,42.07134551804916,20.63389676632291,5.86612298132008,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA05,Kavango,0.3411654675014268,71.03225522126078,48.02965447721163,19.96482938926949,34.94301115134786,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA06,Khomas,0.043794331573603,11.40212408520085,38.40892385169264,11.90635100393382,1.9781242473062801,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA07,Kunene,0.2588208054636525,51.80823885319178,49.95746066510176,16.67538186928636,24.04428586502681,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA08,Ohangwena,0.3507836735708957,72.84925963408729,48.15198882361167,15.963565148568708,27.883627593763077,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA09,Omaheke,0.2234998008050109,45.345343286221265,49.2883689057712,21.16979690555264,20.79567660062543,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA10,Omusati,0.2526759259589854,58.9002354610792,42.89896703824752,21.65497555919487,12.92804729270229,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA11,Oshana,0.134812174009784,34.39697308238511,39.19303413323368,20.64322981084083,5.0383965427926505,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA12,Oshikoto,0.2167780609126285,48.35770977254455,44.82802472082866,25.30611957394571,13.14862744162003,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NAM,NA13,Otjozondjupa,0.1112150240538368,24.25360917643343,45.85504089094556,21.81934785345227,8.27807499506909,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00 -NER,,,0.6012798122205687,90.97115762490247,66.09565360262867,4.85513516010162,76.27069140793054,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE001,Agadez,0.4130614498004992,71.18641006163156,58.02532385646082,10.96012268913214,49.60833282636773,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE002,Diffa,0.5769456296314429,92.60774489320406,62.29993293722692,3.52036390427865,77.65799060423211,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE003,Dosso,0.6247741709848588,95.23845511991354,65.60104006288357,2.69521407406054,79.06720400990267,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE004,Maradi,0.6512354621057603,95.2572493070644,68.36597391202058,2.9157460111293902,83.70193909869568,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE005,Tahoua,0.6318977873035211,94.62201545562274,66.7812648315315,3.77812292965508,80.43620722274181,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE006,Tillaberi,0.6127390844314378,93.06245146530502,65.84170895819088,5.2481654601841,76.8922553353684,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE007,Zinder,0.6298011570234162,94.19463051637206,66.86168347079509,3.89990814888449,80.75561033783583,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NER,NE008,Niamey,0.2311031796631815,46.18862179371153,50.03465587159946,20.6424995254159,22.66412920856859,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -NGA,,,0.1748173018373447,33.04406638386591,52.90429446743305,16.623187869250998,18.099158856683488,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,,FCT,0.0413650726953041,10.17746323525101,40.64379476413198,12.717159898409088,2.01410042742376,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG001,Abia,0.0419360438418849,9.39708733818692,44.62664050324354,10.52094124263116,3.3537130763620104,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG002,Adamawa,0.1819775181311749,39.09710119492303,46.5450155048338,31.18595925709401,15.21430295513651,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG003,Akwa Ibom,0.0445529826312234,9.8073930359465,45.427956713803354,24.32352709759142,3.6117569785913504,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG004,Anambra,0.0088564892819848,2.04488158577297,43.310523912987684,13.76431205688984,0.54722908125741,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG005,Bauchi,0.4411035554341988,75.35625245725375,58.53576061049704,12.443091148040649,50.75127387500363,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG006,Bayelsa,0.0643592186059503,13.965947258461911,46.0829597984879,23.54938025605756,5.98066113141163,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG007,Benue,0.1156325506132825,27.02060327536976,42.79421500506826,35.02949649939012,7.65493012782891,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG008,Borno,0.2922355747901068,53.88606351637769,54.23212528806953,23.38559183978654,31.14623180347133,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG009,Cross River,0.0775015585698433,19.08596377039145,40.60657324000242,34.7097288946176,3.9392084377901697,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG010,Delta,0.0507448686549996,11.78205755067018,43.06961533396442,17.04352420590294,3.08815788076267,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG011,Ebonyi,0.0340547992121901,8.0226844919899,42.44813471873597,12.76928544993,1.05605035835148,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG012,Edo,0.0357711353981113,8.31599029908216,43.01488350949534,6.3308786786400795,1.69501893805927,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG013,Ekiti,0.0531501026929354,12.47442741913096,42.60724833864812,21.63806561534796,3.53368878007069,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG014,Enugu,0.0300122315162294,6.881904109112499,43.61035992420967,12.587599758858861,2.3834043043557798,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG016,Gombe,0.3344877201323364,61.34116982666913,54.529074205381676,18.20308623319978,40.17147486236476,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG017,Imo,0.0182895748162878,4.61229363952812,39.65396881834033,7.722742677131509,0.28654328064157003,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG018,Jigawa,0.4376723142602218,74.7773602349922,58.530056809281724,14.42647885797813,51.98145530491267,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG019,Kaduna,0.1670685176033895,34.0943063937735,49.00188191946925,16.43374473265749,14.698922907560592,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG020,Kano,0.2496833995052018,45.06122910255291,55.40980671808974,14.506778119820702,26.73077905461157,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG021,Katsina,0.3330857729266605,61.131868158414434,54.48643775510288,17.49864384586595,35.19475188558594,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG022,Kebbi,0.4372595274071139,73.78634016189343,59.260227089150874,9.80974306504662,52.74925627162877,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG023,Kogi,0.0637921408655946,14.021897338413911,45.49465691125256,23.31449779703761,5.68123715012954,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG024,Kwara,0.0962442724788407,20.156012763103483,47.74965843195948,14.797617549068601,8.13682382884044,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG025,Lagos,0.0043607469750755,1.10541108452963,39.449097590070444,1.52528664861233,0.20731008338546,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG026,Nasarawa,0.1887620936353711,40.582991856544844,46.51261156462259,23.990151441746953,15.70763302207389,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG027,Niger,0.2190993822710942,44.5601186448222,49.169389340607864,17.75550544483729,22.794190873732433,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG028,Ogun,0.0918175508812875,19.948224848233963,46.02793059524604,23.52657545465031,6.93807649993992,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG029,Ondo,0.0636784891123096,14.4482278633186,44.07356370256149,32.40077217875151,4.21196779348555,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG030,Osun,0.0314646938447099,7.52009366797568,41.84082703477791,13.00352395167336,1.64880739605874,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG031,Oyo,0.0808740301160175,17.37582239019378,46.54400137150317,11.01005614751823,6.3095947284848,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG032,Plateau,0.1944775462750894,42.46685499249921,45.79513748061621,30.435840559032577,16.263243405464458,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG033,Rivers,0.0351212136932596,8.38984604317633,41.86157113314916,10.66610210461452,1.37550079656739,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG034,Sokoto,0.4371937098028033,70.73904706560026,61.80373187631003,11.95481252732679,51.401964550435686,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG035,Taraba,0.2701975664246392,56.703960730231294,47.65056319612355,26.02284003950001,25.42818142864632,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG036,Yobe,0.3427848493195101,63.023408340641396,54.39008431069906,17.58022658458328,43.55713641531336,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NGA,NG037,Zamfara,0.3912671480139256,71.86953392170878,54.44130866914395,10.666856777403801,44.73599188473022,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00 -NIC,,,0.0744948916699345,16.46019980455167,45.25758651443265,13.360173416816101,5.60794346481018,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI05,Nueva Segovia,0.1229148557353031,26.688608994155473,46.05517498578521,15.43369808235912,9.64104477806297,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI10,Jinotega,0.2102411252777841,43.76236809063453,48.04153304555229,19.80074883523421,19.542805433193518,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI20,Madriz,0.1136177471419337,26.03423936102103,43.64166187702969,21.852775118451103,6.731948277066251,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI25,Esteli,0.0409135032240925,10.29929803731953,39.72455508699946,12.61070490529164,1.21071561383944,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI30,Chinandega,0.0381642742701866,9.71455606044267,39.285659615049404,15.09182520973074,1.4183156915611599,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI35,Leon,0.0386674361113171,9.03261969577103,42.80866173234417,8.802023555272049,2.10619385043042,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI35,Raan,0.1722325714324586,35.4551143132267,48.57763816832666,21.93314383714822,15.222056490640279,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI40,Matagalpa,0.1025394145611098,22.85695333440523,44.86136584387352,17.04614209622377,7.409216072655981,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI50,Boaco,0.1250637765638163,28.08336420963916,44.53304655034537,15.06685410329555,10.291907143090311,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI55,Managua,0.016464231252892,3.7635581975093904,43.74645053658921,6.8440684311757805,1.26795864697438,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI60,Masaya,0.0192459594261556,4.827541411993621,39.86700016356291,8.11415713526373,0.9492337978032801,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI65,Chontales,0.0792322348629892,18.52762334510882,42.76438126312949,17.186138388119858,4.91536667373975,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI70,Granada,0.0339727933860332,8.19551047344099,41.45293145085732,8.74270581866624,2.16127093259193,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI75,Carazo,0.0207879714661313,5.50595034324523,37.755464852010924,8.27024471647458,0.09072540492707,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI80,Raas,0.1503366723748428,32.05923193262989,46.89341051300423,22.44807931520435,12.07143942482291,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI80,Rivas,0.0296245500799908,7.773792203716081,38.10823508483991,10.74670294371727,1.01675882481892,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NIC,NI85,Rio San Juan,0.1313314483437234,28.93745893240862,45.38458219516924,23.88687823470242,9.70979955830268,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00 -NPL,,,0.0852043624127787,20.06566991703522,42.46275492673309,20.222155112689798,5.52955868431071,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -NPL,NP01,Koshi,0.070377862745117,16.9577513039183,41.50188399617309,21.37174795494902,3.9879373777167904,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -NPL,NP02,Madhesh,0.1489256435739871,32.317362429805705,46.08223950746544,23.9219202601531,13.140663178473542,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -NPL,NP03,Bagmati,0.0314417710534914,7.7318885172569605,40.665060008710455,12.551547600753391,1.44986557154268,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -NPL,NP04,Gandaki,0.0458688865097345,11.49376747304299,39.90761655594087,13.84139955022935,2.38102848291897,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -NPL,NP05,Lumbini,0.0804535844289835,19.68828731836786,40.86367855568915,23.85166080046788,4.23981929918717,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -NPL,NP06,Karnali,0.139000890881512,34.0203424741167,40.85816919311335,22.32169095833398,7.0330649762926996,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -NPL,NP07,Sudurpashchim,0.0979463384269773,25.16743632581585,38.91788466611017,24.75155679943822,4.39857960168663,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PAK,,,0.1982473948654647,38.33213060505974,51.71833439367877,12.91958091494295,21.46765117395236,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,,Federally Administered Tribal Areas (FATA),0.3831498356261085,71.51569658596458,53.57562799735129,16.76793953006457,45.76331574809663,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,,Islamabad (ICT),0.0463819325170828,10.63379201848672,43.6174907657102,7.54244467440229,2.66605362032209,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK2,Balochistan,0.3535900096583638,65.31917148915383,54.13265379783283,14.55607034413158,40.99457198368166,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK5,Khyber Pakhtunkhwa,0.2579402862315264,50.69814461454685,50.87765798780639,16.65193663508658,26.46994693979937,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK6,Punjab,0.1234140357623264,25.17048117775234,49.03125804023543,13.48772686343903,12.217388628188539,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PAK,PK7,Sindh,0.2740408736113715,50.53729538695953,54.22547279451052,8.73274874861828,32.132040060977104,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PER,,,0.0248044933025734,6.380152793454701,38.87758507605013,10.01601381083354,0.87949557741659,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE01,Amazonas,0.0677809116014197,16.52730953883196,41.01146132839355,20.086611676034778,3.06306090073531,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE02,Ancash,0.0254861376667024,6.9050066927125995,36.909649477385656,12.14170939710017,0.60868534179459,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE03,Apurimac,0.048660117255532,13.22957112986767,36.7813263014058,15.7019786565775,1.24938947172853,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE04,Arequipa,0.0040962037953842,1.13303291294899,36.15255786985793,6.13875744651299,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE05,Ayacucho,0.0382534150934923,10.30666555648376,37.11521915972878,15.90691168474627,1.01897548496493,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE06,Cajamarca,0.0571494818762391,15.147280469988031,37.72920293479208,19.168770377691928,1.0975367829862401,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE07,Callao,0.0017459905523113,0.49785376363305,35.07034956550489,3.68636841739031,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE08,Cusco,0.029577693128974,7.90129693917722,37.433972367647726,14.673464796019719,0.5473622314537699,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE09,Huancavelica,0.0780059902600387,20.97085443619095,37.19733523371277,19.49483310422318,1.4262061400369401,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE10,Huanuco,0.0529129349594837,13.234462870510692,39.98117300051932,20.01379751080308,2.1315650644804998,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE11,Ica,0.0046740858051442,1.27729258651264,36.59369712546272,6.534523596673799,0.03721492213285,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE12,Junin,0.0345685075694845,9.17324527664622,37.684054581524116,11.773547216118011,0.37522102498017,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE13,La Libertad,0.0339352396474413,8.71089499356197,38.957236509591766,10.33775132247815,1.44417875254724,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE14,Lambayeque,0.0215658552037386,5.45057310598618,39.5662158536201,10.65661918721255,1.1228167032576901,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE15,Lima,0.0032488420560763,0.8985476936807899,36.15659000545483,4.0070277543385,0.03031358825479,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE16,Loreto,0.101493654347672,23.888333935365978,42.486702765576126,18.80330459619306,7.53075410490746,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE17,Madre de Dios,0.0182919860133652,4.81122712891917,38.019377433703525,11.56806137662997,0.13970629810027999,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE18,Moquegua,0.0034493388984208,0.98216879943414,35.11961386279125,3.10409410936534,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE19,Pasco,0.0397653412525946,9.53314782647403,41.71270809644242,12.560942483320831,2.9875552470230398,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE20,Piura,0.0275362768713072,7.2899718371563,37.77281652990398,12.11260441146437,0.6762340398101999,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE21,Puno,0.0408327921772196,10.76458280310605,37.93253572766195,19.334744892368068,0.50195016569524,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE22,San Martin,0.0281837267865206,7.271525437904949,38.759029349749206,11.850953420137971,0.9539008032717801,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE23,Tacna,0.0038194113306267,1.02243006417834,37.35621109396927,5.08158632383182,0.19862734071914,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE24,Tumbes,0.0098997302805439,2.79906196845335,35.36802826131818,8.89135270680986,0.12957020482917,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PER,PE25,Ucayali,0.0638746276550569,14.816887689893079,43.10934184823929,14.94762929559469,4.413451639949581,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,,,0.0157881155770483,3.8866590631936004,40.62130307893674,5.24303080675662,0.68674012683289,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH01,Ilocos,0.0112117241220749,2.75663396715418,40.67179123403658,2.12040427476691,0.48553852171604,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH02,Cagayan Valley,0.0052091070747283,1.29564678289757,40.20468497655444,3.5300634843929903,0.35633915109512,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH03,Central Luzon,0.0070577973330474,1.73995441745908,40.56311626458673,1.5839511374756299,0.3723535593379,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH04,Calabarzon,0.0077038565230647,2.1489278472202002,35.84976821362433,2.28768683917595,0.07164310596987,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH05,Bicol,0.020128746332193,4.93599330635744,40.77952517939531,11.22296845327356,0.84736684523471,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH06,Western Visayas,0.0107212399047252,2.7500340355516397,38.98584441546577,4.36507493140582,0.36323529799533,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH07,Central Visayas,0.0201878996519616,5.01138897906449,40.28404048517937,5.91552832702266,0.72908583681645,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH08,Eastern Visayas,0.0198921130107033,5.03598282330006,39.49996199087129,5.72916496760494,0.8007221073964,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH09,Zamboanga Peninsula,0.0346791767508685,8.23803736095943,42.096406257169036,9.82359806429638,1.8773130415631298,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH10,Northern Mindanao,0.016803831247165,4.264350105207599,39.4053744007658,6.90109074281031,0.49719149362866005,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH11,Davao,0.0153407798754667,3.76703895856631,40.723709109993514,4.92685670978193,0.47180201738272,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH12,Soccsksargen,0.0321628033982593,7.33186464237356,43.867153810203405,8.89992689107749,2.23029522371359,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH13,National Capital,0.003308638755369,0.96542182622383,34.27143105216945,1.9254072943168,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH14,Cordillera Admin,0.0040330930399634,1.06967538815154,37.70389675818215,3.10957035062613,0.04448402501564,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH16,Caraga,0.0116974127404143,3.0305196261496503,38.598703138168325,6.6456297064069,0.44416165140816,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH17,Mimaropa,0.0278175080686976,6.15634121142239,45.18513044255148,8.26112281648933,1.8420235347900198,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PHL,PH19,ARMM,0.0756667604375795,18.01426333862031,42.00380499343514,21.82270302763547,3.86584489494833,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -PNG,,,0.2632908996655484,56.628627303217094,46.49431077602522,25.25748807025684,25.787112132299523,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG01,Western,0.2496104436287145,54.886212174078395,45.477804669239,29.048178878709553,22.83562167221355,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG02,Gulf,0.3512590582849268,70.35600035432635,49.92595606855402,21.62270985378846,38.62292980746717,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG03,Central,0.2132663824250157,46.323172543177684,46.03881183358735,25.66447233636347,20.5002444806857,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG04,National Capital District,0.0180709650923894,4.71903667243602,38.29375855021907,11.982425095246441,0.2695934053965,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG05,Milne Bay,0.227511338004112,50.878536307056635,44.71656508179798,37.87285720860745,19.5038436627445,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG06,Northern (Oro),0.309775612893868,65.56427753299197,47.247620892030554,24.029691731672838,31.510391493960572,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG07,Southern Highlands,0.3871371135895558,82.65518220154641,46.83760936435426,12.87340532074782,44.365871636530294,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG08,Enga,0.342640091044527,68.70956196335251,49.86789047313099,18.73663551689806,37.7370110002196,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG09,Western Highlands,0.209567620593763,49.59486867592719,42.255907957567565,29.493091515180183,16.02689858052952,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG10,Chimbu,0.2348393507927755,53.55426492029516,43.850728068490355,18.56243942359522,19.69553098946973,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG11,Eastern Highlands,0.2643047300905666,54.46828252839331,48.52452066076978,29.041257538565514,25.171238230517467,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG12,Morobe,0.2028748639211145,44.86289151289236,45.22108519528079,22.06199237773502,19.39366597186908,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG13,Madang,0.2987669309145114,65.33310559107677,45.72979169006734,28.02764958005116,28.33388783840995,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG14,East Sepik,0.2909486843489212,63.54622839962746,45.78535841957647,27.210524425309078,28.983266464363822,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG15,West Sepik (Sandaun),0.357105803114229,72.87735431076648,49.000928545161536,19.49709834345949,40.64746361132979,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG16,Manus,0.1058052998055587,25.72990217273452,41.121532097264826,45.470225739884675,4.08832274315394,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG17,New Ireland,0.1882863219771863,43.587093657036455,43.19772349556284,39.81238816144812,14.26346268375125,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG18,East New Britain,0.1740370660588952,37.787235155086,46.0571050897516,31.295600905461008,15.2220285830894,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG19,West New Britain,0.2217987988763975,50.66713880208823,43.77567080366815,28.070296846788462,16.805861462862833,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG20,Autonomous Region of Bougainville,0.202505918698077,45.74563338501929,44.26781393399469,38.828243745347926,13.59006431600332,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG21,Hela,0.451257126570166,87.0036488126742,51.86645993914101,10.754376456008739,56.23800590489634,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PNG,PG22,Jiwaka,0.2546092632852522,56.67257941396973,44.926358729049035,30.32201679700746,22.68100599324293,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00 -PRY,,,0.0188485813545086,4.50074540534684,41.87879930314812,7.18145924092627,0.9738953227505599,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,,Resto,0.0353261241177811,8.06793613520604,43.785825179786144,9.70023793051466,2.1251160326399803,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY00,Asunción,0.0007704893530744,0.22559024252889,34.154374073857,2.08270522435305,0.00952553724568,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY02,San Pedro,0.0266793845192039,6.811596473610081,39.16759400320742,10.30978933580338,1.39247282371489,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY05,Caaguazú,0.0195560856282249,4.95752964471488,39.44723890672691,9.336926924614659,0.7376543609819199,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY07,Itapúa,0.0286712766863219,7.33779901510314,39.0734014754408,14.72949380260932,0.60709943209285,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY10,Alto Paraná,0.0131205477568207,3.2420344637921104,40.47010574179383,5.83284605678782,0.6001520313111101,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY11,Central,0.0021022052562019,0.57794462454998,36.373817955982155,3.3573037848151404,0.09017924538802,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY16,Boquerón,0.0797363659625272,17.26706199939045,46.1783052411244,7.21988047906807,5.629889345414489,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PRY,PY17,Alto Paraguay,0.0634076257170159,15.993684714178318,39.645414330823584,14.20802253711785,2.81012931501062,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -PSE,,,0.0019800922697394,0.56618420016282,34.97258081680731,1.25175734058195,0.00647065505442,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -PSE,PS01,West Bank,0.0020128956042767,0.57312407075643,35.121463344228744,1.1223897452387899,0.01105545932896,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -PSE,PS02,Gaza Strip,0.0019337960595381,0.5563897779706001,34.7561392409381,1.43433723594063,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,,,0.2310019619235062,48.822401873815394,47.31474754571589,22.69471882517998,19.701177223474108,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW1,Kigali City,0.0997558752524087,22.390722687445038,44.552324927119926,14.83979532373984,7.090181635592129,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW2,South,0.250546866215234,53.07032479664158,47.210351015430206,24.798158673497202,21.84214607980897,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW3,West,0.2637163545224834,54.23223200798291,48.627236010434686,24.10173353634752,22.92052664784869,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW4,North,0.263504399758116,55.62387906513116,47.372532118727825,22.75766841499624,22.93129283068653,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -RWA,RW5,East,0.2316359173304881,49.55028504987204,46.74764576981706,23.489873614373348,19.42364417758378,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -SDN,,,0.2794395886310533,52.32804165093923,53.401499428373455,17.66052862769846,30.87827791783026,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,,Al Qadarif,0.3875247589224718,70.19227298787042,55.209034047015116,16.502457642993072,47.71244707358746,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD01,Khartoum,0.0710775260266949,16.22902019785068,43.79656021138492,16.49738439608817,5.29096778855322,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD02,North Darfur,0.4436644783973187,83.72888492214331,52.98822250049876,10.80451041574776,51.221898548998034,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD03,South Darfur,0.3991369204758993,72.15096484418795,55.31969272176009,17.97346140875237,44.53833523933922,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD04,West Darfur,0.4522922335367857,78.34680005423861,57.72950946607506,12.12126474795498,54.30882329259366,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD05,East Darfur,0.4500973112655962,76.58573990116764,58.77038099343791,16.98019245982978,54.05858946731604,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD06,Central Darfur,0.4917220106627631,83.81896429318195,58.66476814755408,11.518106936238679,62.86706611796349,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD07,South Kurdufan,0.40689366088867,70.15641976878447,57.99806521337252,20.79508015899931,46.086644243001764,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD08,Blue Nile,0.3711715625952601,70.61498842137843,52.56271662616167,15.550796099128469,40.94495708909781,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD09,White Nile,0.2568673977576534,51.550446230791216,49.82835582211234,23.1703273752969,25.15783583248107,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD10,Red Sea,0.2274283998038117,44.34850325823003,51.2820914111924,21.78646122988396,25.95993167655265,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD11,Kassala,0.3606322667023313,65.4913182489244,55.06566005155259,13.613108174063099,42.34598446370747,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD13,North Kurdufan,0.3341474262152357,63.09451305602447,52.95982329216666,19.84895237787746,37.18298375423826,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD14,Sinnar,0.270816336363588,51.295029368892756,52.79582440941564,17.13710306711835,29.55490834159409,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD15,Al Jazirah,0.1670911756612068,34.76021259059058,48.06966448370849,21.969521692074782,15.42468795309097,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD16,River Nile,0.0863337113100413,18.35028948818102,47.047601818841464,20.11335596625853,6.91122785610306,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD17,Northern,0.0337798744212557,8.103988138154131,41.68302549977554,20.37932538377881,2.13721012383368,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SDN,SD18,West Kurdufan,0.4684299141854735,81.41151478303733,57.53853314655122,12.877245027330211,55.417472817198984,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SEN,,,0.2628619729760566,50.832378108573,51.71152378797015,18.18333569014483,27.706271309696128,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN01,Dakar,0.0837123007822729,18.263788777432822,45.83512315128716,18.980239048893573,5.20287911669882,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN02,Diourbel,0.3603713523665793,71.52023787506644,50.38732575192019,20.637926742171462,38.890225693846794,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN03,Fatick,0.2834562270168672,56.29046964236721,50.35598900093792,17.520987938571082,31.991631624881613,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN04,Kaffrine,0.5020927802634061,85.6701456583768,58.60767206648393,7.8735147574095805,66.22578427360295,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN05,Kaolack,0.3033455188454918,60.639759667426596,50.024195430384864,17.98289123065787,29.754398748806782,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN06,Kédougou,0.2871582494040308,58.74771727417355,48.87989912252644,19.7514765843427,29.441034228993416,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN07,Kolda,0.4112871496949628,72.17120915782841,56.98770389110914,13.617582895641538,48.58212389282818,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN08,Louga,0.2996761025174471,58.39986399511686,51.3145206198605,20.57514091616503,28.619226671994102,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN09,Matam,0.3589148060190435,68.59464234680077,52.32402906985678,19.60548836779855,41.0002854307889,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN10,Saint-Louis,0.2733946257070987,51.28096733051707,53.31307889436064,16.67540860990644,30.599666037857048,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN11,Sédhiou,0.3884280079777714,70.17519689521538,55.35118177976279,16.14340595292461,44.02575317535654,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN12,Tambacounda,0.3626703364284821,61.7240086118562,58.75676978614429,17.3121064217022,45.70633368032856,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN13,Thiès,0.2020833219404577,42.33385706848458,47.73562721051904,18.166808335372732,17.479908379443252,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SEN,SN14,Ziguinchor,0.1286752579941337,29.672691161134928,43.364876241044,25.462265593225457,9.17802493600114,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,,0.2928993067145286,59.22196286298045,49.4578856483022,21.26054862155928,28.027725202777297,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Bo,0.2894674673884057,58.92412232710734,49.125461009240965,18.80227785594412,25.83669975390155,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Bombali,0.2904334802888185,59.26328518120169,49.00732036720505,23.73535290507521,22.61316774788302,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Bonthe,0.3746648745116536,71.49810011357395,52.40207416931396,12.489611304582859,39.10820353202658,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Falaba,0.4620015167192365,84.63015578357845,54.590649448961884,9.448873708248499,49.01659990452956,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Kailahun,0.3185383816520892,68.00513216053957,46.840344475784015,23.42723001374744,28.956724784745667,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Kambia,0.3550802550368618,69.84584254376774,50.83770803027493,19.30966272126941,34.59101994120563,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Karene,0.4042946450889307,77.91566527951102,51.88874966780852,16.70515634226147,46.54366414479384,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Kenema,0.3165722228135872,63.40529897212927,49.928354245713905,19.23063787945998,31.219411331459128,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Koinadugu,0.3085879040144935,60.783085557876994,50.768713233660954,20.72029547889354,31.06097805075383,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Kono,0.2852897197289726,60.37273514200051,47.25472832363037,28.013902825217528,26.18979250709999,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Moyamba,0.3884797609818861,73.85731200666369,52.598686633333735,17.372863444798963,42.07698530665237,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Port Loko,0.3495647007204467,67.84703041676043,51.52247616044413,18.20755680283316,36.70654907230272,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Pujehun,0.4225758698179598,80.58254909477616,52.440121907902494,10.98465902913468,46.81236184565244,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Tonkolili,0.3706390375219023,73.19376026424503,50.63806480003438,21.15788179759173,39.04819850626747,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Western Area Rural,0.1742208859815097,41.139489050672786,42.34882104804861,27.169596834426102,11.203745182511451,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLE,,Western Area Urban,0.0791683734072819,20.17523785445701,39.24036681916611,27.88941738495334,3.5295008008505304,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SLV,,,0.0324625094524029,7.86088558753619,41.29624975571928,9.8907354335748,1.66463920922749,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV01,Ahuachapán,0.0345323651899858,8.58423706660551,40.22764623349465,14.468535247848699,1.29214178920115,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV02,Cabañas,0.0595682010639726,15.50279411189202,38.42417091656951,12.960552457154659,2.21759746724033,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV03,Chalatenango,0.0426960871801298,10.51410146811895,40.608403209340985,13.17899545387658,2.29897142157845,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV04,Cuscatlán,0.0327785380692709,7.60449544163429,43.10415900811747,10.09792046378093,1.84775477180442,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV05,La Libertad,0.0214461054071471,5.05949589625638,42.38783042202982,6.632624242337069,1.31670609785975,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV06,La Paz,0.0378702792793258,9.01074810668408,42.02789694146922,12.24224004834748,2.24350641575925,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV07,La Unión,0.0668690702238516,15.732369295273118,42.50413206607275,15.736712347634011,4.35255976353296,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV08,Morazán,0.0384485074400829,9.9906022346876,38.484674433928376,13.854662365211002,1.15552388643863,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV09,San Miguel,0.0412018661283223,9.82652325407124,41.92924095635949,11.89937056480167,2.5801459527923,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV10,San Salvador,0.0132274893402111,3.29538920872422,40.139384158911064,5.33128389769452,0.55722709340468,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV11,San Vicente,0.0264448296617531,6.80925696332446,38.83658643547812,10.23984008363074,0.6019856823148201,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV12,Santa Ana,0.0300994841642904,6.96083219371534,43.24121502521791,9.22682195177233,1.6299084701269801,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV13,Sonsonate,0.0592827394895008,13.579273294673039,43.656783542869384,11.818286801554601,3.64005395491247,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SLV,SV14,Usulután,0.0362703429991724,9.38659650306356,38.64056901490825,14.596392223529712,1.2198144887037001,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00 -SRB,,,0.0004331141474629,0.11367367319895999,38.101535322504546,2.09899887974521,0.00772455154572,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Belgrade,0.000151474059991,0.04544221799728,33.33333333334999,1.05647924820169,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Southern & Eastern Serbia,0.0002743448537922,0.06172759210322,44.444444444460004,2.87490154481276,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Sumadija & Western Serbia,0.0009527690609643,0.26269278000558,36.26932803193197,2.48783406047077,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SRB,,Vojvodina,0.0002376200604567,0.05334939044072,44.54035153798472,1.87485666166228,0.0271351878684,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,,0.0479233751055391,11.71226372784119,40.91726093190729,16.96788901359919,2.08303751679292,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Distrito de Mé-Zóchi,0.0394517087639548,9.96215418493131,39.60158418711204,16.195968585951277,0.82321890739651,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Distrito de Água Grande,0.0348673992039125,8.297489645904491,42.02162424043816,14.01289318389064,2.13317503376535,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Região Autónoma do Príncipe,0.0477594983187615,11.793356303782259,40.49695191812741,20.89812216611288,1.7502093977267201,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Região Norte Oeste,0.0615766631983803,14.81558025720991,41.56210025484112,19.10269472304998,2.55525989169929,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -STP,,Região Sul Oeste,0.0713646790175743,17.780053850315948,40.13749318104912,20.795342674787108,3.38900217605261,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -SUR,,,0.0112324684674057,2.8537397360455503,39.36052165349411,4.02327732187103,0.39725917175139003,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR01,Brokopondo,0.0198077182790745,5.31716637180005,37.25239515567184,16.11850133666295,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR02,Commewijne,0.0047425858044183,1.2061142521330699,39.32119860146584,2.62306778259634,0.23231115142297998,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR03,Coronie,0,0,,0.55995348066371,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR04,Marowijne,0.0173159668913824,4.6402690080229405,37.316730692646,12.002621309552481,0.45353000799862,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR05,Nickerie,0.002413967672957,0.7067177547041,34.15745050819815,2.57710218297204,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR06,Para,0.0280551424245345,6.914485658229711,40.5744458969886,6.78465070235669,1.44265488928304,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR07,Paramaribo,0.005243758536068,1.3240457550890299,39.60405836364307,2.16645013162939,0.32283100387221997,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR08,Saramacca,0.0088357218790218,2.29256688091624,38.54073768827439,3.15713829923969,0,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR09,Sipaliwini,0.1237426451576963,31.18880020309848,39.67534639097885,20.47447963835635,3.4573657371922204,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SUR,SR10,Wanica,0.0019505409253683,0.48034321748857006,40.60723362695677,1.68002435699514,0.11362231917893999,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -SWZ,,,0.0326487948914623,7.89899449471681,41.33284928011945,19.035626953273642,1.34611763380308,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ1,Hhohho,0.029704114966495,7.5466050817740395,39.36089757530047,15.47517447140074,0.7406045051085,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ2,Manzini,0.0279223701745674,6.849003066356881,40.76851755509556,15.270654180330009,0.88949772275302,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ3,Shiselweni,0.0325982466692617,7.936984365720471,41.07132528829496,25.585515959639537,1.47875759665223,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SWZ,SZ4,Lubombo,0.0438691240991929,9.91679160174007,44.23721487854526,23.97866074927554,2.77002468102083,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -SYC,,,0.0029634608921739,0.86575757857124,34.22968467760313,0.40528035858443,0.02774253136023,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,,,0.517011206983083,84.1749474663757,61.421031143453554,10.66594962378816,64.60869726411627,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD01,Batha,0.6518607219717232,95.12285577228101,68.52829603142305,2.75669916067018,86.56035160406196,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD02,Borkou,0.5717162081295953,92.3397952882755,61.9143898191192,4.48428002019717,75.01982659750128,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD03,Chari Baguirmi,0.5873698199732068,93.68402371538139,62.69690355718252,4.23352777435691,77.5239434438496,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD04,Guéra,0.5643859358195434,89.07711582173901,63.359251207570736,7.740075408093141,72.1260306841508,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD05,Hadjer-Lamis,0.6348263728429878,95.8724268503895,66.21574040611748,2.4085127065160803,85.33226450826619,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD06,Kanem,0.6758919250754385,99.25367008275543,68.0974239553958,0.68164365562139,91.60073187918525,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD07,Lac,0.6584757483398556,96.34225711016852,68.34755257881083,3.60803035216595,88.13759041516406,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD08,Logone Occidental,0.4769619084125711,81.51979131396901,58.508725393515626,14.368836501798791,56.0628279814436,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD09,Logone Oriental,0.4470421284656639,80.29582642478114,55.67439160545169,17.14592616795178,50.31630436541471,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD10,Mandoul,0.4768575847326119,83.66140599827347,56.998514314049764,14.135214008130252,56.87664482104003,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD11,Mayo Kebbi Est,0.4422691016458898,80.40673619080148,55.00398630736678,16.356966465870702,48.900465440982025,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD12,Mayo Kebbi Ouest,0.4111554420873683,76.4381297412466,53.78931215077931,19.699968834916028,45.46061568808622,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD13,Moyen Chari,0.3994281946619405,73.22745915802334,54.54623159872074,21.99241094442506,41.99930851048359,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD14,Ouaddaï,0.6144494273224517,90.4764104139308,67.91266635262575,4.06821592263236,83.67615332791509,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD15,Salamat,0.6111637154346262,94.25999782600293,64.83807866861933,4.67455418067151,78.59698370697113,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD16,Tandjilé,0.4764213706833104,82.31317271722173,57.879116422836255,15.49285514556065,58.28583028341071,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD17,Wadi Fira,0.6610047984414514,95.53986732318873,69.18627971351779,1.7913598220015698,89.21968196324754,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD18,N’Djaména,0.2039027932132546,42.529627488399704,47.94370542485253,18.21581133604699,19.690166332546262,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD19,Barh El Gazal,0.6156429042561293,93.50540728299048,65.84035321004592,3.5503198608647404,83.66866028738173,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD20,Ennedi Est,0.6597507080263663,98.12417205609124,67.2363082614577,1.34081270066647,90.38855543919547,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD21,Sila,0.6612347141724226,97.25606052885571,67.98904979049973,2.13539342955771,90.91333996941167,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TCD,TD23,Ennedi Ouest,0.6023667449241144,93.43467164610541,64.46929542447025,4.59708973488926,80.63538940073191,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TGO,,,0.1796162567119807,37.612295351322324,47.75466507275153,23.76189748450722,15.22555321580529,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,,Golfe Urbain,0.036054924209449,8.78769852847278,41.028858799182125,20.4452973896916,1.59073071221336,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,,Lomé Commune,0.0402316672972077,9.63560705815171,41.75312157750541,14.849996092447501,1.38417147100302,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG01,Centrale,0.1911524175597573,43.21987681423908,44.22789504499025,26.40461254108009,12.952526666105951,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG02,Kara,0.2655698547046539,52.16145834069409,50.9130425322997,21.1465330096352,26.02049496082064,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG03,Maritime,0.1782194393325969,39.27936140197113,45.372285335487526,27.42602887879322,14.156277516348382,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG04,Plateaux,0.1909168888648199,41.51225791867506,45.990485325765064,27.85533043425663,14.53725090520317,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TGO,TG05,Savanes,0.3335048530530141,63.56886194254617,52.46355571921946,24.044204425872483,34.47803408034641,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -THA,,,0.0018171864624753,0.49100214853319,37.00974563764991,4.6918953364942295,0.03180580331417,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH10,Bangkok,0.0008312386873633,0.24937160620891,33.33333333334316,0.95569612483913,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH27,South,0.0031629988678746,0.83635519537304,37.81884641086922,2.72078852114499,0.07022138077751,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH55,North,0.0032762665338673,0.8771828369285599,37.3498704710083,7.3157412349905,0.035563477947389996,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH57,Central,0.0007728895601565,0.18959093329641,40.76616675271861,1.19978465689406,0.05472020568556,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -THA,TH96,Northeast,0.0019383158083929,0.54725726324376,35.41873152863925,9.910056325235681,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TJK,,,0.029005923068437,7.44460628776415,38.9623331943165,20.08650818197664,0.73162258073473,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,,DRS,0.0242945269707601,6.25024947599787,38.86969162439931,21.72162039012501,0.41302662756489,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,,Gbao,0.0242893421511226,6.31083170083658,38.48833767489437,18.84067349058008,0.48669086451982,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,3501000,Dushanbe,0.008496766575373,2.2445182110854702,37.85563660570107,3.5961030941139303,0.12725447212659002,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,3505000,Sughd,0.0226698212174075,5.9226341539084,38.27658543191878,17.25012570807736,0.8593244848666901,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TJK,3507000,Khatlon,0.0417499486120752,10.60437841614168,39.37048167625236,25.109592346895322,0.9691947650439501,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00 -TKM,,,0.0008491773862619,0.24940715723756002,34.047835501893296,0.34108324791779,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Ahal,0.0029990936181097,0.89972808543273,33.33333333334002,0.17293833000262998,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Ashgabat,0.0010255516933354,0.30766550800055,33.333333333339986,0,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Balkan,0.0006035375844692,0.18106127534072,33.33333333334,0.17818935328000998,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Dashoguz,0,0,,0.69046615742216,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Lebap,0.0009874939902815,0.27377204821372,36.06993470387556,0.64725567087437,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TKM,,Mary,0.0002296315879209,0.06888947637627,33.33333333334,0.08493219435213001,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TLS,,,0.22151424007078,48.25369955976663,45.90616721447737,26.82779498582341,17.38387594860528,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL01,Ainaro,0.3253788146887428,67.66273763029447,48.08833134517775,18.25768766507736,29.96484797822323,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL02,Aileu,0.2386953586961834,53.16185944440781,44.89973849499955,28.71573974472948,17.98295092878073,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL03,Baucau,0.2138489182986204,49.07314583026493,43.5775849867634,28.01568481494051,14.25093595121857,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL04,Bobonaro,0.2551872222704646,55.501240721311994,45.97865182002587,24.51191437381511,20.43118939790997,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL05,Cova Lima,0.2419170603039922,55.182817764340165,43.839200335348224,23.82303564236508,15.293734865784762,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL06,Dili,0.094245525264488,21.608505110638728,43.6150139872874,33.29510967585675,6.19370551862359,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL07,Ermera,0.333519075574804,67.44491089990963,49.45059176811083,17.529580430707732,31.506548778573766,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL08,Liquica,0.2380180525275811,51.355310440023494,46.34731062633843,30.65015297184776,19.5136146339738,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL09,Lautem,0.1838903548505295,42.12674065218276,43.65169296357642,26.685814612436182,13.63264727821693,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL10,Manufahi,0.2237245148087338,49.281855223843515,45.396934387423684,27.61980046725875,17.37303076334548,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL11,Manatuto,0.2186235209814121,48.27647271217918,45.28572795382741,31.30016744190693,15.64996988462858,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL12,Oecussi,0.3374377666135072,67.77696394063638,49.78649780020508,17.89759902984617,32.84736155039284,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TLS,TL13,Viqueque,0.2185089056058243,50.51605385999773,43.25533942366297,30.49558907391917,12.31692571352986,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -TON,,,0.0033361547730897,0.87460811431648,38.144566903508846,6.40239917348161,0.02455731806277,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TON,,Ongo Niua,0.012048965065398,3.61468951961759,33.33333333335002,4.89950441563262,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TON,TO1,Tongatapu,0.0025673871500253,0.6648706153862001,38.61483859583632,5.88299604208936,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TON,TO2,Vava'u,0.0029460631047714,0.8337427958810101,35.33539503220895,5.95777379094152,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TON,TO3,Ha'apai,0.0085193455434141,2.20353189414135,38.6622293331218,9.40561157345352,0,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TON,TO4,Eua,0.005467943267228,1.29702522375276,42.157570778826056,10.66453156208286,0.43951923823495004,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -TTO,,,0.0020729839665243,0.53428129554743,38.79948603479201,0.78980075931081,0.14126504185979,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,Eastern,0.0031813404287228,0.9028245914281801,35.23763595861112,1.02255828763333,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,North Central,0.0013696410262727,0.41089230788185,33.33333333333001,0.55933254395433,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,North West,0.0005084892098901,0.15254676296703001,33.333333333332895,0.67964076305399,0,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,,South West,0.0028953756239522,0.68265081805056,42.413713532497695,0.95432031813988,0.32380930457964,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TTO,TT90,Tobago,0.0036772274919868,0.91515985749373,40.181258627944075,0.7324386765968101,0.25319788343508,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TUN,,,0.0034418494648616,0.97762844026562,35.206110247023,2.82511410100286,0.022557466132240002,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,,District Tunis,0.0024273184847902,0.72819554543692,33.33333333334001,0.63045519743768,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,,South Western,0.0027063938303096,0.7841381591657,34.514247249351584,0.8372350195366101,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN1,North East,0.0018786518357483,0.56359555072438,33.333333333339986,3.44400811924976,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN2,North West,0.002864326074499,0.75524838572022,37.9256166402465,8.26240365624076,0.09760952414172999,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN3,Central West,0.0095864604534285,2.6872875587115,35.67337043016351,5.65837463353437,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN3,Centre East,0.001949754195851,0.55599592196547,35.067778716047386,1.1435460356323301,0.05036432052261,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUN,TN5,South East,0.0053813953973183,1.47579106867208,36.46448004432294,3.0533301979536303,0,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00 -TUV,,,0.008084608456584,2.11443590412606,38.23529689790041,12.19446402524593,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -TZA,,,0.221336581382745,47.21537373753228,46.87807463161113,23.13968614589941,18.30118735785611,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Central,0.2366427370430116,50.95238726896775,46.443895904979,25.2541826114782,17.5637235180748,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Eastern,0.120999602478431,26.965554806253078,44.871912833913655,21.71517296003285,8.41416432932438,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Northern,0.211082636494039,42.93527131981497,49.162991173791085,21.31494605509279,19.692386809616792,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,South West Highlands,0.2407093056633198,51.666531847711106,46.58901943966722,21.23700960193501,18.90515911199212,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Southern,0.1756904790832742,42.27164220050284,41.562255435911176,27.48391298032185,10.1672634633289,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Southern Highlands,0.1535631281699704,36.4543931698599,42.124724845765584,28.256378941010368,7.47546820107222,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Western,0.3278047147079337,66.97508113536048,48.94428034292658,18.8990645806755,31.373992775436722,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,,Zanzibar,0.0805853587054455,19.77218083652543,40.75693995099369,27.34795669890447,3.18438131947341,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -TZA,TZ08,Lake,0.2634523118800939,55.241976527617666,47.69060204578009,23.35683437144914,23.59359597482782,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00 -UGA,,,0.2810284784269139,57.16848545525982,49.15793661296965,23.610282111800927,25.68002360957337,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Acholi,0.3587934782619319,71.91045270611589,49.8944819229899,19.17622306954516,34.67435779839538,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Ankole,0.2809893386111586,58.19872417520469,48.2810134746687,27.422412936603592,23.00235623078582,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Bugisu,0.297127792474906,62.86289479283753,47.26600540017767,27.219163870983497,25.34833294506488,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Bukedi,0.3029260571952105,64.18636536735383,47.19476721598003,24.48560844238253,27.85971190349918,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Bunyoro,0.3478834837667565,67.37208796228661,51.636144030669485,18.62938423575163,35.21790616587229,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Busoga,0.2538684331708591,54.21869444385558,46.82304429770884,27.33399816838848,21.51343972209974,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Kampala,0.0307412982348789,7.28527684149969,42.19647228745638,24.548805441073227,0.97566788660538,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Karamoja,0.6288812306044883,96.25792328356764,65.33293147742839,3.5299284783322804,85.0563007580358,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Kigezi,0.2668827402677869,57.358968473847774,46.528511123673596,27.97374048003201,19.45775043659201,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Lango,0.3513057234432174,70.76947516601327,49.64085470735982,22.30008018717841,33.20508608797353,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,North Buganda,0.2110493003122378,45.664244357185154,46.21762678506464,25.53114704964544,17.23342111874993,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,South Buganda,0.1529849911461303,32.946752496144484,46.434012324593446,25.31174035847427,10.59616046279958,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Teso,0.319539064512734,65.06880602806946,49.10787273012061,21.85491263881671,29.2047466529532,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,Tooro,0.3059791512846325,63.20677134094329,48.409236034878624,25.28023313844448,27.267069512889048,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UGA,,West Nile,0.4116677923722086,78.15589245745022,52.67264942260491,15.83004543171096,43.75708674691164,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -UKR,,,0.0008404317588393,0.24423733661568,34.41045380222842,0.41862714517387,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,Center,0.0008462084886636,0.24004808626239,35.25162403247195,0.57909091151132,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,East,0.0008071859285901,0.242155778577,33.333333333335844,0.23507747217265001,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,North,0.0006476748098281,0.18992353825635,34.1018715096742,0.78317283655081,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,,West,0.0011715887311576,0.32887855122521,35.62375006800883,0.45409999677220003,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UKR,UA80,South,0.0005920735552869,0.17762206658608,33.33333333332999,0.20105463976140997,0,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00 -UZB,,,0.0061037555287794,1.7295364934116102,35.291279207063,0.23906541920356,0.04594677911981,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -UZB,,Central,0.00580498203012,1.62711668557259,35.67649500242924,0.09698163821747,0,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -UZB,,Central-Eastern,0.0076528605823546,2.2653254172151702,33.782610322549075,0.08467546946082,0,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -UZB,,Eastern,0.0040870117569606,1.08090389475191,37.81105588391563,0.61954493389798,0.11080926001535,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -UZB,,Western,0.0071742952644155,2.02244180614377,35.47343237576225,0.24746837703426,0,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -UZB,UZ24,Southern,0.009506938631155,2.72795100730041,34.85010766583785,0,0.08041769583222,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -UZB,UZ26,Tashkent City,0.0008630076145996,0.25890228437991,33.33333333333,0,0,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00 -VNM,,,0.007729394853574,1.9191205225535701,40.275713602860655,3.47253112528116,0.3501318684553,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Central Highlands,0.0259657375501501,6.18546808373929,41.978613742119755,5.50121000428062,1.1597649987592,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Mekong River Delta,0.0077798488418308,1.92563090524953,40.40155785110132,8.352573099665921,0.36697228895298,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,North Central & Central Coast,0.0033213352924266,0.87016210820282,38.16915562189008,2.36618734525011,0.09276130426249,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Northern Uplands,0.0262424524792068,6.32933250044017,41.46164303642091,5.41600407681903,1.5441837683284,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Red River Delta,0.0009506977941181,0.28058131212982,33.883147345116896,0.99400997662124,0,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -VNM,,Southeast,0.0029381747344679,0.8404619072470899,34.959047032741566,1.38088404418799,0,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00 -WSM,,,0.0246004897655159,6.28849868635534,39.11981379417876,12.85492446973014,0.48601052980581,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -WSM,,Apia Urban Area,0.0145906143310286,3.7729877510892496,38.671247545970225,6.799189241968249,0,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -WSM,,North West Upolu,0.0348636613114954,8.893111994261261,39.20299365845498,13.870181438658461,0.52218433514986,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -WSM,,Rest of Upolu,0.0232427901310563,5.6608002869147205,41.05919473044009,14.82093452197989,1.21810636335692,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -WSM,,Savaii,0.0181710662435707,4.90218642117373,37.06726893348135,14.280259441364022,0.13181295114552,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00 -YEM,,,0.1878396306700131,37.41924382502642,50.198670916055235,22.466298989052998,16.958427488375268,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE11,Ibb,0.1441860653493234,30.08338714072241,47.928800262702396,31.20442392746174,10.87888138021992,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE12,Abyan,0.113946561322243,25.10725737879873,45.38391414207695,17.026597866250988,7.92311990931498,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE13,Sanaa City,0.0357231577079841,9.3384065011147,38.25401871691908,8.60139927196492,1.15543859876008,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE14,Al-Baidha,0.1829672332171991,38.52055451933569,47.4985979564124,26.709010032521054,13.92634428878313,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE15,Taiz,0.1251694305130883,26.420049897815563,47.376682102117265,30.38295826423772,8.77400434551661,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE16,Al-Jawf,0.3654355582552536,70.8684780418095,51.56531766346971,23.119199845191222,39.29156847823698,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE17,Hajjah,0.3801985930816933,69.18271229820122,54.95572238378094,18.47804608810775,42.47453175844838,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE18,Al-Hodiedah,0.2343495062674052,45.76674901871416,51.20518963922455,23.3082626558371,21.81568908713293,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE19,Hadramout,0.0367891814835492,8.37389577825917,43.933173349331064,8.542801668550739,2.02466531397264,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE20,Dhamar,0.2517535927666972,50.09266036015887,50.25758084250784,29.27786719181985,23.38258520461367,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE21,Shabwah,0.1647463606377032,34.45441148636669,47.8157523320031,21.40305012786622,11.84728334893758,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE22,Sadah,0.266113860816617,50.58743868812788,52.604731079035616,22.770583121476708,25.803702387286158,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE23,Sanaa,0.2085873448200394,43.74611062876211,47.681346255019456,32.41913123446996,16.79355084351688,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE24,Aden,0.0383479491420053,9.20742062035921,41.648959815316026,5.75890993493638,1.62869907155756,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE25,Lahj,0.1402268140828986,30.70516040077662,45.66881014546073,28.165634805684597,9.671427244819231,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE26,Mareb,0.211873183203581,44.365141896684015,47.75667881261013,18.72211278510423,16.891829767810858,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE27,Al-Mhweit,0.2992035438842812,56.54312526221265,52.91598978598321,23.521567152018598,32.07179757181959,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE28,Al-Mhrah,0.0760892394088395,17.72003104466873,42.93967613094665,9.20973968918665,4.7906087840017095,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE29,Amran,0.2430853807790685,48.549497763328795,50.06959741665541,27.920572743571448,21.76055773188608,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE30,Aldhalae,0.2341143375667558,47.30057374203853,49.49503125343406,23.81388415246306,21.104432490312842,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE31,Reimah,0.4589401016217589,82.74324683273832,55.46556597537018,13.472936176449721,50.43050452453329,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -YEM,YE32,Socotra,0.1526390277520247,32.982049888222484,46.27942419265165,24.312850179576202,10.93608939648366,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00 -ZAF,,,0.0248906428726559,6.256881704056751,39.781226575720105,12.168812859730851,0.94499432476338,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00 -ZMB,,,0.2316850733623361,47.9061305448736,48.36230159422229,23.87217790293651,21.02875426411524,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM101,Central,0.2486141223388297,51.23565315495357,48.52365628811997,25.989766530910728,22.21109456976342,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM102,Copperbelt,0.1240374516860674,27.88596476148487,44.48024400338612,21.84319797511713,8.53343081933993,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM103,Eastern,0.3216799445358586,64.72205202065689,49.70175303360132,21.65689827918741,30.711536150904962,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM104,Luapula,0.3474417776822771,66.66826097898745,52.115020338056226,19.65498945089514,37.192170819852834,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM105,Lusaka,0.0850443477781945,19.47907050316494,43.65934594485739,25.135417482564982,5.42293861990911,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM106,Muchinga,0.2890748575108879,59.021744349115636,48.97768791803241,26.52536988346806,26.641325755007976,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM107,Northern,0.3294722822954825,66.56559409117244,49.4958824891154,20.86829496754681,31.73455166100213,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM108,North-Western,0.2531920513746994,54.13328680959907,46.7719708698351,25.730193310219768,21.13283609752337,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM109,Southern,0.2131727135176048,46.24477473877815,46.096605448236886,29.19940502667191,16.27612055190176,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZMB,ZM110,Western,0.3392865159043831,67.7855490600704,50.052927299255636,21.651415384908628,37.66257306141859,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00 -ZWE,,,0.1099417854663912,25.80003834890275,42.61303180236045,26.33033295076757,6.770157921049649,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW10,Bulawayo,0.0153449756384244,3.8109419784243195,40.26557141331489,10.52394304909561,0.39473238981174996,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW11,Manicaland,0.1385696291016889,31.84758611074303,43.510245523740245,29.536253500347648,9.5888500110627,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW12,Mashonaland Central,0.1530712960514446,35.297597011349765,43.36592544875657,32.32525212899918,10.57562787123905,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW13,Mashonaland East,0.0999352182693455,24.10051946421255,41.46600176719915,28.74578266012275,5.09872933421623,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW14,Mashonaland West,0.1204353121012291,28.620267709164573,42.0804282213839,29.84071330704376,7.0835680737295,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW15,Matabeleland North,0.1913336644300788,44.10439148546613,43.38199847811743,32.58258194983185,13.635977151948039,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW16,Matabeleland South,0.113581498168019,27.68559220361543,41.025489840591725,30.528058677508792,5.01037257283731,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW17,Midlands,0.1300539367149733,30.34653960984076,42.85626578418827,24.96371908851146,8.30809054880723,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW18,Masvingo,0.132369346963558,31.086229570430802,42.58134511412978,29.94573249981332,7.956651094527489,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 -ZWE,ZW19,Harare,0.0187693923042409,4.63092200327702,40.53057315791307,13.80248135117051,0.60007818870627,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00 diff --git a/tests/fixtures/input/download-hdx-hapi-poverty-rate-global.csv b/tests/fixtures/input/download-hdx-hapi-poverty-rate-global.csv new file mode 100644 index 00000000..a763e123 --- /dev/null +++ b/tests/fixtures/input/download-hdx-hapi-poverty-rate-global.csv @@ -0,0 +1,3168 @@ +location_code,has_hrp,in_gho,provider_admin1_name,admin1_code,admin1_name,admin_level,mpi,headcount_ratio,intensity_of_deprivation,vulnerable_to_poverty,in_severe_poverty,reference_period_start,reference_period_end,dataset_hdx_id,resource_hdx_id +#country+code,#meta+has_hrp,#meta+in_gho,#adm1+name+provider,#adm1+code,#adm1+name,#adm+level,#indicator+mpi,#indicator+headcount_ratio,#indicator+intensity_of_deprivation,#indicator+vulnerable_to_poverty,#indicator+in_severe_poverty,#date+start,#date+end,#meta+dataset_id,#meta+resource_id +AFG,Y,Y,,,,0,0.2342,46.9358,49.9063,27.3813,20.8027,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,,,,0,0.2683,52.1779,51.4260,26.3367,25.9715,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Badakhshan,AF17,Badakhshan,1,0.2993,60.4351,49.5235,24.7380,28.8921,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Badakhshan,AF17,Badakhshan,1,0.3050,64.2694,47.4510,26.7436,22.8206,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Badghis,AF31,Badghis,1,0.4161,77.9107,53.4021,17.2367,47.3259,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Badghis,AF31,Badghis,1,0.4437,81.2721,54.5967,13.9680,56.3865,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Baghlan,AF09,Baghlan,1,0.2283,45.8220,49.8125,30.2366,18.4283,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Baghlan,AF09,Baghlan,1,0.3332,68.5503,48.6077,21.0723,30.0120,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Balkh,AF21,Balkh,1,0.1997,39.4961,50.5604,25.2644,18.0604,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Balkh,AF21,Balkh,1,0.1755,36.3407,48.2959,21.4309,13.3836,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Bamyan,AF10,Bamyan,1,0.2243,47.8084,46.9228,36.3083,16.2316,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Bamyan,AF10,Bamyan,1,0.1557,33.7161,46.1769,37.0825,10.2924,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Daykundi,AF24,Daykundi,1,0.2560,57.8362,44.2585,36.2634,16.9149,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Daykundi,AF24,Daykundi,1,0.2281,47.1238,48.4060,30.6778,18.0359,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Farah,AF33,Farah,1,0.2827,58.4861,48.3292,23.8044,24.0885,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Farah,AF33,Farah,1,0.3951,72.7736,54.2930,17.8726,45.0390,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Faryab,AF29,Faryab,1,0.1463,31.3311,46.6801,28.6928,12.0366,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Faryab,AF29,Faryab,1,0.3749,68.3564,54.8390,16.3815,41.3745,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Ghazni,AF11,Ghazni,1,0.2072,41.5724,49.8414,36.1220,20.0127,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Ghazni,AF11,Ghazni,1,0.2337,46.0437,50.7469,34.6630,19.3074,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Ghor,AF23,Ghor,1,0.2290,51.7429,44.2651,33.6859,13.7581,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Ghor,AF23,Ghor,1,0.4132,79.1440,52.2076,17.0006,48.4021,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Helmand,AF30,Hilmand,1,0.2904,63.6381,45.6352,20.3984,23.0147,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Helmand,AF30,Hilmand,1,0.4209,74.5329,56.4708,18.9662,47.9185,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Herat,AF32,Hirat,1,0.2904,56.5791,51.3211,18.8994,30.7541,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Herat,AF32,Hirat,1,0.2347,45.1989,51.9180,23.0792,23.4302,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Jawzjan,AF28,Jawzjan,1,0.2272,49.2435,46.1407,25.9318,11.4550,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Jawzjan,AF28,Jawzjan,1,0.2174,43.8862,49.5278,30.2898,17.1624,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kabul,AF01,Kabul,1,0.0690,15.1721,45.4850,26.1407,3.7226,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kabul,AF01,Kabul,1,0.0682,15.1416,45.0587,34.9170,4.0778,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kandahar,AF27,Kandahar,1,0.4116,69.8793,58.8991,16.5666,46.5318,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kandahar,AF27,Kandahar,1,0.3811,69.0125,55.2184,19.3084,41.2368,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kapisa,AF02,Kapisa,1,0.1819,39.4239,46.1472,47.5761,13.8165,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kapisa,AF02,Kapisa,1,0.2991,61.3466,48.7569,28.6038,27.0128,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Khost,AF14,Khost,1,0.1973,39.0942,50.4703,40.4763,19.4642,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Khost,AF14,Khost,1,0.2231,46.2498,48.2461,34.3636,16.8045,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kunarha,AF15,Kunar,1,0.2650,57.4449,46.1229,30.3194,17.6666,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kunarha,AF15,Kunar,1,0.2505,49.5160,50.5970,33.1387,22.6670,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kunduz,AF19,Kunduz,1,0.2582,54.6430,47.2577,28.0756,19.0232,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Kunduz,AF19,Kunduz,1,0.3045,59.4017,51.2578,23.4466,26.9829,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Laghman,AF07,Laghman,1,0.3284,67.4575,48.6797,23.9834,27.8454,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Laghman,AF07,Laghman,1,0.2902,57.4106,50.5403,28.2632,26.6103,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Logar,AF05,Logar,1,0.1729,36.6619,47.1489,29.4819,12.3381,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Logar,AF05,Logar,1,0.2152,42.0406,51.1920,41.9146,18.6930,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Nangarhar,AF06,Nangarhar,1,0.2381,47.1923,50.4600,29.2548,20.8954,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Nangarhar,AF06,Nangarhar,1,0.2613,53.3680,48.9617,26.6321,25.2242,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Nimroz,AF34,Nimroz,1,0.1878,41.3180,45.4425,32.4503,11.1837,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Nimroz,AF34,Nimroz,1,0.2378,47.7913,49.7598,26.1238,21.6650,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Nooristan,AF16,Nuristan,1,0.5352,88.7833,60.2822,10.3832,60.1093,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Nooristan,AF16,Nuristan,1,0.4187,77.1395,54.2787,18.4366,41.1213,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Paktika,AF12,Paktika,1,0.1148,23.6924,48.4595,50.1823,4.9688,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Paktika,AF12,Paktika,1,0.3352,65.6979,51.0187,30.9284,28.4228,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Paktya,AF13,Paktya,1,0.1854,39.6511,46.7677,40.5365,12.8656,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Paktya,AF13,Paktya,1,0.2251,45.1286,49.8812,40.4018,19.6488,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Panjsher,AF08,Panjsher,1,0.0946,21.6449,43.6847,42.9808,4.8027,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Panjsher,AF08,Panjsher,1,0.1137,26.5773,42.7859,45.7710,4.0063,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Parwan,AF03,Parwan,1,0.2094,45.1740,46.3470,31.9187,14.4825,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Parwan,AF03,Parwan,1,0.2179,43.4951,50.0928,32.6293,18.9266,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Samangan,AF20,Samangan,1,0.3087,62.6945,49.2460,27.9372,28.2073,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Samangan,AF20,Samangan,1,0.3972,74.6561,53.2020,19.0334,44.0436,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Sar-e-Pul,AF22,Sar-e-Pul,1,0.2970,62.4235,47.5854,27.7577,25.5355,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Sar-e-Pul,AF22,Sar-e-Pul,1,0.3243,63.2112,51.3010,20.3037,31.5108,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Takhar,AF18,Takhar,1,0.2423,48.1973,50.2705,28.7352,22.8784,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Takhar,AF18,Takhar,1,0.2455,50.3623,48.7397,33.0496,20.6116,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Urozgan,AF25,Uruzgan,1,0.5064,90.4027,56.0208,8.9814,64.5205,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Urozgan,AF25,Uruzgan,1,0.3911,75.9663,51.4842,17.8652,41.2554,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Wardak,AF04,Maidan Wardak,1,0.2605,57.6870,45.1630,32.3081,17.2763,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Wardak,AF04,Maidan Wardak,1,0.2544,51.0114,49.8755,32.5402,22.5734,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Zabul,AF26,Zabul,1,0.1639,33.9201,48.3075,30.7932,12.7860,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AFG,Y,Y,Zabul,AF26,Zabul,1,0.4294,79.0640,54.3063,17.8608,44.0500,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +AGO,N,Y,,,,0,0.2824,51.1041,55.2666,15.5429,32.4576,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Bengo,AO01,Bengo,1,0.3324,62.6276,53.0790,17.4100,38.3496,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Benguela,AO02,Benguela,1,0.3223,59.5840,54.0858,12.4519,35.1528,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Bié,AO03,Bie,1,0.4751,80.8265,58.7851,10.3617,57.9218,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Cabinda,AO04,Cabinda,1,0.1540,31.0390,49.6144,15.4986,14.0806,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Cuando Cubango,AO05,Cuando Cubango,1,0.4198,74.7263,56.1726,10.7160,50.4898,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Cuanza Norte,AO06,Cuanza Norte,1,0.3301,62.5706,52.7634,17.8689,37.3217,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Cuanza Sul,AO07,Cuanza Sul,1,0.4598,76.8116,59.8564,12.2595,54.7361,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Cunene,AO08,Cunene,1,0.4197,71.8787,58.3899,14.3246,50.7598,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Huambo,AO10,Huambo,1,0.3759,66.4965,56.5314,12.9423,45.4494,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Huíla,AO09,Huila,1,0.4022,68.7173,58.5307,10.8676,48.1458,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Luanda,AO11,Luanda,1,0.0743,16.0407,46.3458,20.7354,6.0251,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Lunda Norte,AO12,Lunda Norte,1,0.4315,76.1891,56.6369,12.0954,51.7481,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Lunda Sul,AO13,Lunda Sul,1,0.3550,67.8345,52.3309,16.2651,43.3335,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Malanje,AO14,Malanje,1,0.3394,61.3280,55.3433,15.2026,39.8156,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Moxico,AO15,Moxico,1,0.4248,75.9311,55.9465,12.3204,51.1083,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Namibe,AO16,Namibe,1,0.2750,50.0313,54.9656,15.7047,31.9420,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Uíge,AO17,Uige,1,0.3915,73.1819,53.4916,12.3314,47.9321,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +AGO,N,Y,Zaire,AO18,Zaire,1,0.2161,46.3780,46.5859,24.3688,21.0483,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ALB,N,N,,,,0,0.0078,2.0627,37.8324,7.3314,0.1569,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,,,,0,0.0027,0.6987,39.0711,5.0105,0.0671,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Berat,AL01,Berat,1,0.0011,0.2801,38.8889,3.4675,0.0000,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Berat,AL01,Berat,1,0.0016,0.4674,35.2186,2.4867,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Dibër,AL02,Diber,1,0.0189,5.1070,37.0099,17.2146,0.3410,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Dibër,AL02,Diber,1,0.0075,1.7570,42.6698,11.6232,0.5048,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Durrës,AL03,Durres,1,0.0025,0.7414,34.3782,7.3352,0.0000,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Durrës,AL03,Durres,1,0.0041,1.1689,35.4835,1.4641,0.1101,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Elbasan,AL04,Elbasan,1,0.0179,4.6369,38.5861,9.6076,0.6063,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Elbasan,AL04,Elbasan,1,0.0019,0.4646,40.4991,4.6603,0.0996,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Fier,AL05,Fier,1,0.0017,0.4736,36.9210,6.3343,0.0000,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Fier,AL05,Fier,1,0.0035,0.8358,42.4710,4.3325,0.1484,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Gjirokastër,AL06,Gjirokaster,1,0.0012,0.3132,38.8889,3.3902,0.0000,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Gjirokastër,AL06,Gjirokaster,1,0.0017,0.4431,37.2903,3.0406,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Korçë,AL07,Korce,1,0.0080,2.1120,38.0442,11.1157,0.4443,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Korçë,AL07,Korce,1,0.0003,0.0824,33.3333,7.2005,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Kukes,AL08,Kukes,1,0.0348,9.0472,38.5031,16.6000,0.5624,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Kukes,AL08,Kukes,1,0.0084,1.9598,42.7325,14.0029,0.2861,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Lezhë,AL09,Lezhe,1,0.0060,1.7173,35.0235,9.8488,0.0000,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Lezhë,AL09,Lezhe,1,0.0021,0.6391,33.3333,7.6418,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Shkodër,AL10,Shkoder,1,0.0152,4.0042,37.9232,10.2822,0.1276,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Shkodër,AL10,Shkoder,1,0.0027,0.6220,43.0923,4.5551,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Tirane,AL11,Tirane,1,0.0023,0.6130,37.6413,2.2011,0.0000,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Tirane,AL11,Tirane,1,0.0025,0.6769,37.4440,4.2549,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Vlorë,AL12,Vlore,1,0.0000,0.0000,,4.6624,0.0000,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ALB,N,N,Vlorë,AL12,Vlore,1,0.0005,0.1248,38.8889,5.0597,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ARG,N,Y,,,,0,0.0015,0.4323,33.9860,1.6475,0.0051,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ARG,N,Y,AMBA,,,1,0.0011,0.3369,33.5482,1.2995,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ARG,N,Y,Cuyo,AR022,Chaco,1,0.0019,0.5663,33.7738,2.2102,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ARG,N,Y,NEA,,,1,0.0029,0.8079,35.3980,2.6320,0.0561,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ARG,N,Y,NOA,,,1,0.0027,0.7828,34.0733,1.4752,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ARG,N,Y,Pampeana,,,1,0.0009,0.2565,33.3333,1.9067,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ARG,N,Y,Patagónica,,,1,0.0010,0.2913,33.8411,1.5171,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ARM,N,N,,,,0,0.0014,0.3959,35.8890,3.2756,0.0109,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ARM,N,N,,,,0,0.0006,0.1684,35.8779,2.2452,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,,,,0,0.4638,82.2955,56.3569,12.0468,54.3497,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,,,,0,0.4089,75.0975,54.4441,15.7613,46.0684,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,Bubanza,BDI001,Bubanza,1,0.4415,78.6104,56.1688,14.7578,52.4671,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Bujumbura,BDI002,Bujumbura Rural,1,0.1374,30.9998,44.3237,22.9172,7.9421,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,Bujumbura,BDI002,Bujumbura Rural,1,0.1137,24.2681,46.8371,29.7403,9.6387,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,Bujumbura Mairie,BDI017,Bujumbura Mairie,1,0.1137,24.2681,46.8371,29.7403,9.6387,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Bujumbura Rural,BDI002,Bujumbura Rural,1,0.3429,69.0991,49.6179,21.5836,33.7015,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Bururi,BDI003,Bururi,1,0.2898,60.3693,48.0096,26.4600,22.7873,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Cankuzo,BDI004,Cankuzo,1,0.4612,81.7613,56.4120,12.9356,55.3936,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Centre-East,,,1,0.4925,87.0234,56.5926,10.0346,58.6544,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,Centre-East,,,1,0.4269,79.7593,53.5235,14.3951,47.2450,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,Cibitoke,BDI005,Cibitoke,1,0.4279,77.4936,55.2164,16.1602,49.2177,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Gitega,BDI006,Gitega,1,0.3932,75.9784,51.7559,17.2477,41.7473,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Karusi,BDI007,Karuzi,1,0.4649,82.7006,56.2190,14.0026,54.7209,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Kayanza,BDI008,Kayanza,1,0.4171,77.9783,53.4897,15.1778,45.6795,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Kirundo,BDI009,Kirundo,1,0.5430,90.1022,60.2623,8.6948,68.0148,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Makamba,BDI010,Makamba,1,0.3837,74.0545,51.8085,15.4389,41.0384,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Muramvya,BDI011,Muramvya,1,0.3671,77.5142,47.3576,13.5034,29.4314,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Muyinga,BDI012,Muyinga,1,0.5327,89.3550,59.6203,7.1588,67.0362,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Mwaro,BDI013,Mwaro,1,0.3321,68.0683,48.7845,23.4917,31.5940,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Ngozi,BDI014,Ngozi,1,0.4709,82.4793,57.0946,12.4307,56.1493,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,North,BDI013,Mwaro,1,0.5221,89.4833,58.3432,8.7419,66.1129,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,North,BDI013,Mwaro,1,0.4909,84.9647,57.7770,10.8648,59.2307,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,Rumonge,BDI018,Rumonge,1,0.3839,73.7766,52.0345,14.7452,43.5223,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Rutana,BDI015,Rutana,1,0.4068,73.7625,55.1512,17.6242,45.3548,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,Ruyigi,BDI016,Ruyigi,1,0.4622,82.9794,55.7056,11.9160,55.9943,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BDI,N,Y,South,,,1,0.4303,79.6329,54.0344,16.1256,46.3363,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,South,,,1,0.3671,71.0685,51.6580,18.4547,38.4760,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,West,,,1,0.4916,86.3522,56.9255,11.1065,56.2862,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BDI,N,Y,West,,,1,0.4012,74.7882,53.6399,17.7111,44.5600,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,,,,0,0.4298,73.4300,58.5271,13.4060,50.9049,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,,,,0,0.3421,63.1673,54.1553,16.4834,37.1601,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,,,,0,0.3617,65.9637,54.8404,15.0310,40.1809,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,,,,0,0.2895,55.9233,51.7691,17.8412,30.7832,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Alibori,BJ01,Alibori,1,0.6452,95.9363,67.2499,3.3538,82.0573,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Alibori,BJ01,Alibori,1,0.5519,88.6410,62.2580,5.6360,72.5691,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Alibori,BJ01,Alibori,1,0.5471,89.0750,61.4237,6.8080,67.7723,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Alibori,BJ01,Alibori,1,0.4596,80.2700,57.2627,10.1779,56.5699,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atacora,BJ02,Atacora,1,0.5791,88.9194,65.1222,6.9873,73.9436,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atacora,BJ02,Atacora,1,0.4516,78.6188,57.4428,11.6738,52.0460,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atacora,BJ02,Atacora,1,0.4722,80.9416,58.3349,11.3534,57.5569,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atacora,BJ02,Atacora,1,0.4136,78.6751,52.5647,10.3078,45.8463,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atlantique,BJ03,Atlantique,1,0.3880,70.2802,55.2137,14.4073,43.6134,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atlantique,BJ03,Atlantique,1,0.2680,53.1600,50.4199,18.9287,27.2869,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atlantique,BJ03,Atlantique,1,0.2777,55.5153,50.0185,15.2359,27.5036,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Atlantique,BJ03,Atlantique,1,0.2204,44.2160,49.8565,18.0513,20.8516,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Borgou,BJ04,Borgou,1,0.4928,79.9543,61.6397,9.9936,60.5526,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Borgou,BJ04,Borgou,1,0.4435,73.7138,60.1623,10.1540,50.3789,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Borgou,BJ04,Borgou,1,0.4621,76.8251,60.1457,9.4922,55.9053,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Borgou,BJ04,Borgou,1,0.3814,67.6672,56.3640,13.5214,47.2031,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Collines,BJ05,Collines,1,0.4361,77.6418,56.1651,13.8976,50.2211,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Collines,BJ05,Collines,1,0.3329,66.3077,50.2035,17.5790,33.3483,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Collines,BJ05,Collines,1,0.3021,60.9204,49.5905,20.6826,28.0751,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Collines,BJ05,Collines,1,0.2330,48.7184,47.8305,22.6223,21.9344,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Couffo,BJ06,Couffo,1,0.4548,80.9911,56.1523,13.5686,53.5912,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Couffo,BJ06,Couffo,1,0.3841,72.8889,52.6968,15.7178,41.4440,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Couffo,BJ06,Couffo,1,0.3903,72.8843,53.5482,17.2792,43.4544,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Couffo,BJ06,Couffo,1,0.3530,66.9386,52.7320,18.6278,36.9344,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Donga,BJ07,Donga,1,0.5326,87.5128,60.8555,8.4605,64.5567,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Donga,BJ07,Donga,1,0.3700,69.9323,52.9041,14.8946,39.9285,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Donga,BJ07,Donga,1,0.3718,70.9481,52.3993,15.7416,38.8713,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Donga,BJ07,Donga,1,0.3441,66.1431,52.0229,17.7828,38.9368,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Littoral,BJ08,Littoral,1,0.1038,22.7887,45.5346,27.2477,7.4108,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Littoral,BJ08,Littoral,1,0.0723,16.5793,43.5972,20.6344,4.5723,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Littoral,BJ08,Littoral,1,0.0776,17.3528,44.7134,21.6757,5.6327,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Littoral,BJ08,Littoral,1,0.0770,17.6321,43.6495,15.4223,4.7491,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Mono,BJ09,Mono,1,0.4303,77.6979,55.3760,14.1002,48.6367,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Mono,BJ09,Mono,1,0.2849,57.5840,49.4780,25.6447,26.2559,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Mono,BJ09,Mono,1,0.2798,56.4733,49.5424,20.9787,25.2359,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Mono,BJ09,Mono,1,0.2654,54.7569,48.4741,23.4559,23.8632,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Ouémé,BJ10,Oueme,1,0.3458,62.8836,54.9844,17.6044,39.4903,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Ouémé,BJ10,Oueme,1,0.2657,52.9434,50.1882,21.5863,26.5644,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Ouémé,BJ10,Oueme,1,0.2249,46.6434,48.2129,19.3313,20.6408,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Ouémé,BJ10,Oueme,1,0.1675,36.5873,45.7675,24.2540,13.9718,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Plateau,BJ11,Plateau,1,0.4913,84.8591,57.8911,8.9328,59.4272,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Plateau,BJ11,Plateau,1,0.3545,65.7106,53.9561,15.5913,38.5714,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Plateau,BJ11,Plateau,1,0.3901,72.8882,53.5238,15.1422,43.4301,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Plateau,BJ11,Plateau,1,0.3516,67.8545,51.8166,16.4303,38.3236,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Zou,BJ12,Zou,1,0.4171,73.7360,56.5635,14.7809,48.9555,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Zou,BJ12,Zou,1,0.3433,66.0483,51.9704,20.3013,35.3039,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Zou,BJ12,Zou,1,0.3013,59.2198,50.8739,19.8493,31.5364,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BEN,N,N,Zou,BJ12,Zou,1,0.2512,51.2442,49.0261,22.6264,24.6962,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,,,,0,0.5122,83.6869,61.2046,7.6720,63.1173,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,,,,0,0.3429,64.4746,53.1825,15.8100,38.3315,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Boucle du Mouhoun,BF46,Boucle du Mouhoun,1,0.5510,90.9325,60.5890,5.6954,68.1967,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Boucle du Mouhoun,BF46,Boucle du Mouhoun,1,0.3954,73.5923,53.7331,13.7657,44.3571,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Cascades,BF47,Cascades,1,0.4876,82.7640,58.9102,9.3012,60.7829,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Cascades,BF47,Cascades,1,0.3076,60.6503,50.7189,16.6765,32.1100,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre,BF13,Centre,1,0.2058,44.5480,46.2085,20.7421,19.0623,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre,BF13,Centre,1,0.0883,20.6048,42.8471,25.9144,6.2118,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Est,BF48,Centre-Est,1,0.5509,91.2393,60.3807,4.8526,67.6607,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Est,BF48,Centre-Est,1,0.3702,74.9077,49.4245,11.8370,39.8948,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Nord,BF49,Centre-Nord,1,0.5572,93.2040,59.7802,4.1872,69.6296,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Nord,BF49,Centre-Nord,1,0.4542,82.9628,54.7513,9.6396,51.7893,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Ouest,BF50,Centre-Ouest,1,0.5232,84.3283,62.0431,7.3527,63.8196,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Ouest,BF50,Centre-Ouest,1,0.3769,71.3437,52.8243,17.0207,43.2486,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Sud,BF51,Centre-Sud,1,0.5036,86.3501,58.3194,10.2550,60.7023,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Centre-Sud,BF51,Centre-Sud,1,0.3404,68.9414,49.3779,17.9597,36.9767,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Est,BF52,Est,1,0.6540,94.7568,69.0228,3.1212,82.7779,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Est,BF52,Est,1,0.5276,85.5620,61.6638,8.0786,66.8687,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Hauts-Bassins,BF53,Hauts-Bassins,1,0.4410,75.8186,58.1689,10.8160,52.9886,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Hauts-Bassins,BF53,Hauts-Bassins,1,0.2709,54.3735,49.8187,19.6918,27.1410,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Nord,BF54,Nord,1,0.5643,89.8088,62.8281,4.9156,72.5120,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Nord,BF54,Nord,1,0.3948,74.1038,53.2808,14.9181,44.9310,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Plateau Central,BF55,Plateau-Central,1,0.5172,88.5808,58.3853,6.6519,62.9048,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Plateau Central,BF55,Plateau-Central,1,0.3706,72.1097,51.3880,14.9870,41.2461,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Sahel,BF56,Sahel,1,0.6575,97.1961,67.6465,1.4467,86.9363,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Sahel,BF56,Sahel,1,0.6138,88.1119,69.6577,6.5277,80.3394,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Sud-Ouest,BF57,Sud-Ouest,1,0.6125,91.7610,66.7461,4.2549,76.0894,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BFA,Y,Y,Sud-Ouest,BF57,Sud-Ouest,1,0.4739,86.0120,55.1016,7.1436,55.2132,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,,,,0,0.1747,37.5621,46.5072,21.5914,13.5284,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,,,,0,0.1018,24.2062,42.0661,17.8560,6.2000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Barishal,BD10,Barisal,1,0.1954,41.3076,47.3035,24.8005,15.6509,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Barishal,BD10,Barisal,1,0.1226,28.9141,42.3882,22.6498,7.0702,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Chattogram,BD20,Chittagong,1,0.1734,36.8038,47.1203,21.0143,15.0939,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Chattogram,BD20,Chittagong,1,0.1115,25.3756,43.9371,18.9075,8.1193,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Dhaka,BD30,Dhaka,1,0.1586,34.1441,46.4634,20.7412,12.0284,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Dhaka,BD30,Dhaka,1,0.0968,23.0145,42.0428,17.2008,6.1091,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Khulna,BD40,Khulna,1,0.1313,30.4844,43.0635,23.7025,7.6645,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Khulna,BD40,Khulna,1,0.0608,15.5235,39.1908,17.0362,2.1682,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Mymensingh,BD45,Mymensingh,1,0.1633,37.6671,43.3515,18.7406,11.5533,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BGD,N,Y,Rajshahi,BD50,Rajshahi,1,0.1672,37.2044,44.9363,20.5166,11.4313,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Rajshahi,BD50,Rajshahi,1,0.0943,23.5984,39.9489,16.7901,4.2014,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Rangpur,BD55,Rangpur,1,0.1715,39.1258,43.8203,24.8729,9.3925,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Rangpur,BD55,Rangpur,1,0.1029,25.4702,40.3892,17.0665,4.7344,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Sylhet,BD60,Sylhet,1,0.2916,56.8196,51.3140,18.4488,29.6548,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BGD,N,Y,Sylhet,BD60,Sylhet,1,0.1569,35.0779,44.7218,18.5781,12.8644,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BIH,N,N,,,,0,0.0154,3.9497,38.9030,7.1192,0.3975,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BIH,N,N,,,,0,0.0083,2.1901,37.9315,4.0742,0.0620,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,,,,0,0.0303,7.3598,41.1194,8.5425,1.5038,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,,,,0,0.0199,4.9468,40.2322,9.3620,0.8188,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Belize (ex. Belize City South Side),,,1,0.0054,1.4559,37.2871,3.7237,0.3454,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Belize (ex. Belize City South Side),,,1,0.0047,1.3777,34.1567,4.0020,0.0681,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Belize City South Side,,,1,0.0096,2.6860,35.6267,4.4771,0.0000,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Belize City South Side,,,1,0.0022,0.5701,38.8040,9.2595,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Cayo,BZ02,Cayo,1,0.0206,5.5588,37.1397,7.0406,0.2807,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Cayo,BZ02,Cayo,1,0.0184,4.7566,38.5807,6.2403,0.3438,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Corozal,BZ03,Corozal,1,0.0433,9.7249,44.5324,11.2312,2.9986,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Corozal,BZ03,Corozal,1,0.0103,2.7502,37.3317,12.5456,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Orange Walk,BZ04,Orange Walk,1,0.0279,6.7012,41.6162,8.4733,1.5260,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Orange Walk,BZ04,Orange Walk,1,0.0220,5.7567,38.1924,9.1627,0.5684,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Stann Creek,BZ05,Stann Creek,1,0.0283,6.8701,41.1521,8.6239,1.1844,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Stann Creek,BZ05,Stann Creek,1,0.0190,4.7147,40.2904,10.2162,0.7784,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Toledo,BZ06,Toledo,1,0.1007,23.8845,42.1807,20.3118,6.0050,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BLZ,N,N,Toledo,BZ06,Toledo,1,0.0783,17.9857,43.5076,20.2008,5.4648,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,,,,0,0.1666,33.8954,49.1658,19.1652,15.6651,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,,,,0,0.0953,20.6162,46.2110,16.0094,7.2928,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,,,,0,0.0380,9.1027,41.7243,12.1586,1.9509,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Beni,BO08,Beni,1,0.1949,41.7738,46.6576,20.6127,16.3023,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Beni,BO08,Beni,1,0.0974,22.5276,43.2189,20.5211,6.0950,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Beni,BO08,Beni,1,0.0418,9.3267,44.8429,17.7960,2.9529,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Chuquisaca,BO01,Chuquisaca,1,0.3049,54.7288,55.7038,12.8529,37.5019,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Chuquisaca,BO01,Chuquisaca,1,0.1661,34.0581,48.7713,16.7336,16.5714,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Chuquisaca,BO01,Chuquisaca,1,0.0943,20.9581,45.0053,15.0850,7.1872,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Cochabamba,BO03,Cochabamba,1,0.1709,33.8854,50.4457,14.3024,16.7383,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Cochabamba,BO03,Cochabamba,1,0.1155,23.7924,48.5584,12.8770,10.5618,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Cochabamba,BO03,Cochabamba,1,0.0352,8.3174,42.3506,11.2686,1.9508,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,La Paz,BO02,La Paz,1,0.1619,35.5269,45.5675,24.2603,13.2295,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,La Paz,BO02,La Paz,1,0.0785,18.1054,43.3475,18.3664,4.5487,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,La Paz,BO02,La Paz,1,0.0294,7.5958,38.7445,11.8940,0.8539,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Oruro,BO04,Oruro,1,0.1191,26.4409,45.0398,21.6167,7.9243,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Oruro,BO04,Oruro,1,0.0854,19.4925,43.8281,18.4540,4.8314,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Oruro,BO04,Oruro,1,0.0296,7.4192,39.8543,14.5743,1.1700,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Pando,BO09,Pando,1,0.2048,40.8747,50.1085,17.2913,22.0901,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Pando,BO09,Pando,1,0.1029,23.9380,43.0019,24.6284,5.1080,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Pando,BO09,Pando,1,0.0594,15.5418,38.2313,14.8756,1.9025,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Potosi,BO05,Potosi,1,0.2861,52.4063,54.5923,17.5275,30.3652,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Potosi,BO05,Potosi,1,0.1939,39.6029,48.9551,18.6082,17.0407,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Potosi,BO05,Potosi,1,0.1054,25.4396,41.4509,15.2048,6.1289,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Santa Cruz,BO07,Santa Cruz,1,0.0942,20.4321,46.1129,19.4012,7.4692,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Santa Cruz,BO07,Santa Cruz,1,0.0370,8.5777,43.0836,12.9498,2.0169,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Santa Cruz,BO07,Santa Cruz,1,0.0203,4.6620,43.5480,10.3261,0.9433,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Tarija,BO06,Tarija,1,0.1440,29.4335,48.9195,18.0591,14.0187,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Tarija,BO06,Tarija,1,0.0779,17.2074,45.2463,13.0154,5.3940,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BOL,N,Y,Tarija,BO06,Tarija,1,0.0184,4.8078,38.2629,10.9720,0.4778,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +BRA,N,Y,,,,0,0.0163,3.8419,42.5465,6.2108,0.9388,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Acre,BR12,Acre,1,0.0679,14.3844,47.2033,9.8106,5.3435,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Alagoas,BR27,Alagoas,1,0.0315,7.0695,44.6228,13.7803,2.2683,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Amapá,BR16,Amapa,1,0.0269,6.1808,43.4920,11.3114,1.2981,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Amazonas,BR13,Amazonas,1,0.0318,7.3668,43.1554,8.2612,1.4330,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Bahia,BR29,Bahia,1,0.0277,6.5324,42.4028,9.5676,1.7072,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Ceará,BR23,Ceara,1,0.0258,6.1018,42.3285,10.2247,1.4832,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Distrito Federal,BR53,Distrito Federal,1,0.0031,0.6788,45.5378,1.2909,0.2781,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Espírito Santo,BR32,Espirito Santo,1,0.0105,2.5359,41.5000,5.2385,0.6569,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Goiás,BR52,Goias,1,0.0129,3.0170,42.7918,6.6825,0.6282,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Maranhão,BR21,Maranhao,1,0.0604,13.9546,43.2641,12.6788,3.9029,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Mato Grosso,BR51,Mato Grosso,1,0.0182,4.4495,40.8350,7.9848,0.5107,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Mato Grosso do Sul,BR50,Mato Grosso do Sul,1,0.0138,3.2823,41.9345,9.4843,0.6663,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Minas Gerais,BR31,Minas Gerais,1,0.0109,2.7722,39.4503,4.3164,0.5116,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Paraná,BR41,Parana,1,0.0099,2.3266,42.4927,5.3110,0.6537,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Paraíba,BR25,Paraiba,1,0.0257,5.8555,43.8431,9.3032,2.0007,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Pará,BR15,Para,1,0.0439,10.1518,43.2777,12.0142,2.2968,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Pernambuco,BR26,Pernambuco,1,0.0249,5.6135,44.3735,9.7784,1.6380,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Piauí,BR22,Piaui,1,0.0375,9.0318,41.5592,14.0743,1.5289,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Rio Grande do Norte,BR24,Rio Grande do Norte,1,0.0204,4.8644,41.8895,10.8582,0.9442,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Rio Grande do Sul,BR43,Rio Grande do Sul,1,0.0101,2.5148,40.0101,6.6280,0.5474,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Rio de Janeiro,BR33,Rio de Janeiro,1,0.0032,0.7418,42.6857,2.5856,0.2022,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Rondônia,BR11,Rondonia,1,0.0238,5.6275,42.2605,13.4004,0.8385,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Roraima,BR14,Roraima,1,0.0307,7.2406,42.4342,5.8231,1.2893,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Santa Catarina,BR42,Santa Catarina,1,0.0115,2.9864,38.5549,5.4453,0.3165,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Sergipe,BR28,Sergipe,1,0.0284,6.2589,45.3871,10.9002,2.3698,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,São Paulo,BR35,Sao Paulo,1,0.0025,0.5772,43.6930,1.1501,0.1638,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRA,N,Y,Tocantins,BR17,Tocantins,1,0.0239,5.9279,40.3683,10.4630,1.1757,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRB,N,N,,,,0,0.0085,2.4913,34.2341,0.4918,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRB,N,N,Christ Church & St. Philip,,,1,0.0089,2.6670,33.4359,0.2741,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRB,N,N,St Michael,BB08,Saint Michael,1,0.0108,3.1165,34.5656,0.2464,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRB,N,N,"St. James, St. George, & St.Thomas",,,1,0.0078,2.2462,34.7955,1.2246,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BRB,N,N,"St. Lucy, St. Peter, St. Andrew, St. Joseph, & St. John",,,1,0.0057,1.6618,34.3188,0.4747,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,,,,0,0.0386,9.7934,39.4178,8.3413,1.6183,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Bumthang,BT001,Bumthang,1,0.0313,8.1095,38.5589,7.8044,0.6061,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Chhukha,BT002,Chhukha,1,0.0598,15.3638,38.9365,7.9926,2.0168,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Dagana,BT003,Dagana,1,0.0428,10.3853,41.2139,11.7644,1.9025,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Gasa,BT004,Gasa,1,0.0801,19.0730,41.9830,19.6019,4.3997,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Gelephu Thromde,,,1,0.0123,3.3855,36.2371,1.3949,0.3874,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Haa,BT005,Haa,1,0.0362,8.7127,41.5251,7.6882,3.1571,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Lhuentse,BT006,Lhuentse,1,0.0708,15.9364,44.4440,15.7408,4.7807,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Monggar,BT007,Monggar,1,0.0565,13.8635,40.7906,15.7733,2.2069,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Paro,BT008,Paro,1,0.0455,12.5130,36.3735,3.4050,1.8630,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Pema Gatshel,BT009,Pemagatshel,1,0.0615,15.3095,40.1706,13.9370,2.7561,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Phuentshogling Thromde,,,1,0.0192,5.1939,37.0476,3.3900,0.6612,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Punakha,BT010,Punakha,1,0.0223,6.2336,35.7126,5.3915,0.4420,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Samdrup Jongkhar,BT011,Samdrupjongkhar,1,0.0776,19.0552,40.7250,12.6584,4.1614,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Samdrup Jongkhar Thromde,,,1,0.0217,6.1675,35.1340,4.6487,0.0803,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Samtse,BT012,Samtse,1,0.0468,12.0899,38.7348,13.5207,1.6911,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Sarpang,BT013,Sarpang,1,0.0340,8.5659,39.6412,4.9005,1.5760,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Thimphu,BT014,Thimphu,1,0.0404,10.3490,39.0739,5.0923,1.8328,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Thimphu Thromde,,,1,0.0102,2.8394,35.7950,1.3013,0.1062,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Trashi Yangtse,,,1,0.0447,10.7631,41.5674,17.3777,2.2264,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Trashigang,BT015,Trashigang,1,0.0494,12.5089,39.4934,13.4737,2.2498,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Trongsa,BT017,Trongsa,1,0.0289,7.1531,40.4496,12.8013,0.9814,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Tsirang,BT018,Tsirang,1,0.0539,13.1888,40.8485,10.4492,2.7212,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Wangdue Phodrang,BT019,Wangduephodrang,1,0.0311,7.9276,39.2098,10.7869,1.4167,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BTN,N,N,Zhemgang,BT020,Zhemgang,1,0.0576,13.5396,42.5657,12.5607,3.0694,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,,,,0,0.0726,17.2193,42.1845,19.6778,3.5045,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Barolong,,,1,0.0837,20.1754,41.4637,22.9661,4.1802,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Central Bobonong,,,1,0.0762,19.7828,38.5123,29.2124,1.6505,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Central Boteti,,,1,0.1301,31.1978,41.6950,22.0416,6.6631,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Central Mahalapye,,,1,0.0989,25.2594,39.1643,24.2745,1.8574,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Central Serowe,,,1,0.0992,22.6155,43.8475,20.5673,5.9547,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Central Tutume,,,1,0.1345,30.7479,43.7323,24.3143,7.1336,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Chobe,BW15,Chobe,1,0.0429,10.4565,41.0713,12.1212,1.1563,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Francistown,BW02,Francistown,1,0.0253,6.8341,37.0634,11.3914,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Gaborone,BW01,Gaborone,1,0.0042,1.2523,33.6781,4.9476,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Ghanzi,BW16,Ghanzi,1,0.1920,39.9651,48.0462,16.9520,18.1021,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Jwaneng,BW06,Jwaneng,1,0.0000,0.0000,,8.4709,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Kgalagadi North,,,1,0.0943,24.5593,38.4003,14.3011,2.2979,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Kgalagadi South,,,1,0.1134,28.9083,39.2209,19.0803,3.9180,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Kgatleng,BW11,Kgatleng,1,0.0311,7.6432,40.6343,14.1768,2.0234,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Kweneng East,,,1,0.0409,10.2635,39.8737,20.8651,1.6243,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Kweneng West,,,1,0.2064,45.8526,45.0221,23.1048,14.0077,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Lobatse,BW03,Lobatse,1,0.0094,2.7599,34.0512,20.3406,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Ngamiland East,,,1,0.0564,13.2651,42.4988,32.0925,2.2149,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Ngamiland West,,,1,0.1446,34.6061,41.7894,43.7311,5.9375,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Ngwaketse,,,1,0.1004,23.2607,43.1620,25.0117,4.8805,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Ngwaketse West,,,1,0.0989,22.2576,44.4469,24.3164,6.2513,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,North East,BW13,North East,1,0.0954,22.6139,42.1672,17.7955,5.1135,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Orapa,BW05,Orapa,1,0.0000,0.0000,,10.3567,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Selibe Phikwe,BW04,Selibe Phikwe,1,0.0285,5.8187,48.9903,12.5607,1.5020,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,South East,BW09,South East,1,0.0214,5.4316,39.3089,9.2815,0.6015,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +BWA,N,N,Sowa Town,BW07,Sowa Town,1,0.0126,2.8439,44.4444,19.3035,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CAF,Y,Y,,,,0,0.4538,78.8061,57.5796,13.6508,52.3559,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,,,,0,0.5118,84.1229,60.8420,10.2901,62.2507,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Bamingui-Bangoran, Haute-Kotto, Vakaga",,,1,0.4422,80.6917,54.8043,15.3654,48.3364,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Bamingui-Bangoran, Haute-Kotto, Vakaga",,,1,0.5237,90.5809,57.8195,8.5384,65.0410,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,Bangui,CF71,Bangui,1,0.1947,42.6837,45.6039,27.9041,15.0039,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,Bangui,CF71,Bangui,1,0.1876,42.6562,43.9849,27.8484,11.9112,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Basse-Kotto, Mbomou, Haut-Mbomou",,,1,0.5466,91.6358,59.6485,7.2895,67.9240,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Basse-Kotto, Mbomou, Haut-Mbomou",,,1,0.6204,96.7468,64.1278,3.2532,78.5694,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Kémo, Nana-Grébizi, Ouaka",,,1,0.4930,85.7431,57.4970,12.1162,57.8859,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Kémo, Nana-Grébizi, Ouaka",,,1,0.5689,91.5772,62.1243,7.9811,70.9372,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Mambéré-Kadéï, Sangha-Mbaéré, Nana-Mambéré",,,1,0.5288,86.9072,60.8430,9.7836,63.5034,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Mambéré-Kadéï, Sangha-Mbaéré, Nana-Mambéré",,,1,0.5666,90.3223,62.7351,8.1725,71.0411,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Ombella-M'Poko, Lobaye",,,1,0.4634,82.1858,56.3895,13.8480,52.2266,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Ombella-M'Poko, Lobaye",,,1,0.4552,80.1475,56.7992,12.9582,51.6966,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Ouham, Ouham-Pendé",CF31,Ouham Pende,1,0.5421,90.2013,60.1026,8.1543,65.3025,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CAF,Y,Y,"Ouham, Ouham-Pendé",CF31,Ouham Pende,1,0.6018,93.7717,64.1821,5.3040,77.5320,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,,,,0,0.0409,9.4735,43.2138,25.0973,2.0687,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,,,,0,0.0175,4.2098,41.6478,18.5372,0.4394,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,Central Region,,,1,0.0280,6.8445,40.9685,25.3978,0.7564,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,Central Region,,,1,0.0126,3.1459,40.1961,19.5351,0.1355,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,East/Coastal Region,,,1,0.0223,5.4767,40.7893,18.7118,0.6809,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,East/Coastal Region,,,1,0.0091,2.2461,40.5680,13.5005,0.1705,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,Western Region,,,1,0.0789,17.4642,45.1886,32.4758,5.3215,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CHN,N,N,Western Region,,,1,0.0358,8.3741,42.7336,24.6954,1.2016,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CIV,N,N,,,,0,0.3096,58.7607,52.6933,18.5129,32.6572,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CIV,N,N,,,,0,0.2283,45.1244,50.5903,17.6571,23.1138,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CIV,N,N,,,,0,0.2102,42.7734,49.1462,19.6058,19.7336,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CIV,N,N,Abidjan,CI01,District Autonome D'Abidjan,1,0.0615,15.3382,40.1070,18.7130,2.4491,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Bas-Sassandra,,,1,0.2267,47.7854,47.4415,22.4874,19.9722,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Comoé,CI30,Sud-Comoe,1,0.1326,28.3908,46.6907,23.8394,10.9141,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Denguélé,,,1,0.3633,66.1222,54.9488,16.7013,42.5679,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Goh-Djiboua,CI22,Loh-Djiboua,1,0.1971,41.4823,47.5218,21.1692,16.6860,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Lacs,,,1,0.2034,43.5137,46.7499,18.9161,16.9041,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Lagunes,,,1,0.1819,37.1646,48.9487,22.6484,15.7726,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Montagnes,,,1,0.2862,58.2199,49.1615,16.6183,26.2169,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Sassandra-Marahoué,,,1,0.2926,58.2168,50.2553,21.8533,30.6184,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Savanes,,,1,0.3183,60.4256,52.6774,16.2414,35.6563,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Vallée du Bandama,,,1,0.2147,44.4346,48.3148,19.9928,18.8127,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Woroba,,,1,0.3939,73.3773,53.6784,15.2871,43.4037,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Yamoussoukro,CI02,District Autonome De Yamoussoukro,1,0.0963,23.4292,41.0945,20.2375,4.4030,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CIV,N,N,Zanzan,,,1,0.3115,57.3151,54.3515,18.4344,35.8024,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CMR,Y,Y,,,,0,0.2581,47.6425,54.1783,17.8191,27.6463,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,,,,0,0.2395,45.4021,52.7538,17.5384,24.7572,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,,,,0,0.2294,43.2373,53.0514,17.4920,24.1500,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Adamaoua,CM001,Adamaoua,1,0.2809,51.7871,54.2344,21.8910,29.8058,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Adamaoua,CM001,Adamaoua,1,0.3063,57.0008,53.7299,18.6439,34.6518,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Adamaoua,CM001,Adamaoua,1,0.3769,65.6935,57.3720,15.5074,43.9246,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Centre,CM002,Centre,1,0.1686,37.8845,44.5078,25.9984,14.1462,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Centre,CM002,Centre,1,0.1502,35.4213,42.3923,24.0307,9.5625,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Centre,CM002,Centre,1,0.1940,42.7818,45.3543,20.3587,15.1882,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Douala,,,1,0.0193,4.9187,39.2017,11.0734,0.4877,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Douala,,,1,0.0197,4.8938,40.1871,12.7793,0.7338,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Douala,,,1,0.0088,2.3833,36.8114,13.2905,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Est,CM003,Est,1,0.3009,60.5792,49.6744,20.1432,31.8740,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Est,CM003,Est,1,0.3053,57.8893,52.7364,15.5282,33.6237,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Est,CM003,Est,1,0.3016,58.1462,51.8710,14.9672,33.0319,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Extrême-Nord,CM004,Extreme-Nord,1,0.5385,87.2993,61.6852,7.2490,66.7620,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Extrême-Nord,CM004,Extreme-Nord,1,0.4685,79.2578,59.1096,13.3214,56.5952,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Extrême-Nord,CM004,Extreme-Nord,1,0.4281,75.3032,56.8499,14.8367,49.2171,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Littoral,CM005,Littoral,1,0.1201,27.3172,43.9590,19.5791,8.8136,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Littoral,CM005,Littoral,1,0.0791,19.3003,40.9741,22.1601,3.3573,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Littoral,CM005,Littoral,1,0.0934,22.4116,41.6641,20.6009,5.4308,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Nord,CM006,Nord,1,0.4608,77.0849,59.7742,15.7754,53.9931,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Nord,CM006,Nord,1,0.4115,72.5189,56.7507,13.6053,47.2970,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Nord,CM006,Nord,1,0.4234,72.6263,58.3030,14.3635,51.6587,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Nord-Ouest,CM007,Nord-Ouest,1,0.1928,43.7842,44.0403,25.5141,14.4302,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Nord-Ouest,CM007,Nord-Ouest,1,0.1756,40.2856,43.5983,24.7855,12.9427,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Nord-Ouest,CM007,Nord-Ouest,1,0.2241,47.3679,47.3136,20.0035,19.1280,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Ouest,CM008,Ouest,1,0.1891,40.5421,46.6521,23.7923,17.8394,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Ouest,CM008,Ouest,1,0.1395,33.5242,41.6248,23.9349,6.7682,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Ouest,CM008,Ouest,1,0.0988,23.4445,42.1451,28.7855,5.7526,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Sud,CM009,Sud,1,0.1357,33.2581,40.8008,29.9390,5.3875,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Sud,CM009,Sud,1,0.1275,30.3629,42.0068,26.0940,8.8910,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Sud,CM009,Sud,1,0.1301,32.6063,39.8866,20.5399,5.4409,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Sud-Ouest,CM010,Sud-Ouest,1,0.1499,33.9210,44.2053,22.6246,10.5018,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Sud-Ouest,CM010,Sud-Ouest,1,0.1405,33.5801,41.8265,25.1407,7.5667,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Sud-Ouest,CM010,Sud-Ouest,1,0.0346,9.0595,38.1875,14.6158,1.3280,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Yaoundé,,,1,0.0192,5.1113,37.5587,16.1794,0.2335,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Yaoundé,,,1,0.0150,3.9702,37.6805,8.4902,0.2412,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CMR,Y,Y,Yaoundé,,,1,0.0056,1.4151,39.3431,15.0070,0.0929,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,,,,0,0.4284,76.7155,55.8388,12.5854,52.9754,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,,,,0,0.3752,71.9289,52.1563,18.0132,42.0739,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,,,,0,0.3297,64.1735,51.3690,17.5675,36.6553,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Bandundu,,,1,0.5113,91.4014,55.9403,8.3748,64.2649,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Bandundu,,,1,0.3875,77.5895,49.9477,20.4958,41.4544,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Bandundu,,,1,0.4187,84.2171,49.7192,14.1182,50.6247,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Bas-Congo,CD52,Bas-Uele,1,0.3958,72.6725,54.4694,11.8031,46.8527,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Bas-Congo,CD52,Bas-Uele,1,0.3216,63.3558,50.7679,24.5006,31.9187,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Bas-Congo,CD52,Bas-Uele,1,0.2721,53.4345,50.9170,22.4867,30.1567,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Bas-Uélé,CD52,Bas-Uele,1,0.3493,70.2550,49.7199,26.5968,36.3803,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Haut-Katanga,CD71,Haut-Katanga,1,0.2884,55.4019,52.0616,20.9866,29.7873,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Haut-Lomami,CD73,Haut-Lomami,1,0.3989,76.7698,51.9558,18.9215,43.4322,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Haut-Uélé,CD53,Haut-Uele,1,0.3280,65.5061,50.0725,25.6293,32.4293,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Ituri,CD54,Ituri,1,0.3990,74.3005,53.7028,18.0359,41.1849,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Kasaï,CD92,Kasai,1,0.5250,93.5804,56.1061,5.9425,71.0478,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Kasaï Occidental,,,1,0.4603,84.5034,54.4659,12.5882,55.6908,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kasaï Occidental,,,1,0.4581,85.6106,53.5099,13.7658,54.3386,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kasaï Occidental,,,1,0.5051,91.6935,55.0826,7.6709,65.7933,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kasaï Oriental,CD82,Kasai-Oriental,1,0.4361,82.3222,52.9689,12.6014,48.7500,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kasaï Oriental,CD82,Kasai-Oriental,1,0.3918,77.1255,50.7971,18.2688,44.0267,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kasaï Oriental,CD82,Kasai-Oriental,1,0.3926,75.9840,51.6709,18.2295,42.4062,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kasaï-Central,CD91,Kasai-Central,1,0.4816,89.4448,53.8387,9.7210,59.6500,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Kasaï-Oriental,CD82,Kasai-Oriental,1,0.3953,74.4854,53.0738,16.3875,43.2979,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Katanga,CD71,Haut-Katanga,1,0.3775,65.7022,57.4566,16.9784,44.7871,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Katanga,CD71,Haut-Katanga,1,0.3881,72.5024,53.5254,15.0447,46.7203,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Katanga,CD71,Haut-Katanga,1,0.3329,63.6539,52.3038,19.7246,35.7769,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kinshasa,CD10,Kinshasa,1,0.1094,23.5261,46.5039,26.9259,10.3687,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kinshasa,CD10,Kinshasa,1,0.0811,19.6150,41.3656,22.3402,3.7422,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kinshasa,CD10,Kinshasa,1,0.0656,15.4324,42.5014,18.3470,3.2729,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Kongo Central,CD20,Kongo-Central,1,0.2760,54.2069,50.9221,22.3076,30.7585,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Kwango,CD31,Kwango,1,0.4809,90.1723,53.3347,9.3322,64.2761,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Kwilu,CD32,Kwilu,1,0.4262,86.4628,49.2907,11.2778,52.9234,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Lomami,CD81,Lomami,1,0.3774,75.0814,50.2706,22.7779,37.9838,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Lualaba,CD72,Lualaba,1,0.3682,69.8396,52.7223,14.6976,40.3594,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Mai-Ndombe,CD33,Mai-Ndombe,1,0.3599,75.9933,47.3539,23.5327,35.8712,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Maniema,CD63,Maniema,1,0.4697,88.0844,53.3214,10.5979,53.6174,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Maniema,CD63,Maniema,1,0.4193,80.3506,52.1860,15.7315,45.1102,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Maniema,CD63,Maniema,1,0.4381,85.1390,51.4590,14.1407,55.2851,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Mongala,CD44,Mongala,1,0.4320,83.2627,51.8860,16.4428,49.2997,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Nord Kivu,CD61,Nord-Kivu,1,0.3511,67.3417,52.1433,16.1502,38.7904,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Nord Ubangi,CD43,Nord-Ubangi,1,0.4504,83.4705,53.9589,13.7214,55.8358,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Nord-Kivu,CD61,Nord-Kivu,1,0.5219,88.9768,58.6532,8.1920,62.3123,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Nord-Kivu,CD61,Nord-Kivu,1,0.3741,68.7911,54.3808,19.4942,42.5073,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Nord-Kivu,CD61,Nord-Kivu,1,0.3462,66.1130,52.3668,17.1409,38.5715,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Orientale,,,1,0.5204,90.0352,57.8049,6.3967,68.5312,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Orientale,,,1,0.3892,74.2256,52.4334,20.4630,40.2915,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Orientale,,,1,0.3563,70.3358,50.6554,19.9804,35.5508,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Sankuru,CD83,Sankuru,1,0.4278,83.8760,50.9985,14.7983,50.9299,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Sud-Kivu,CD62,Sud-Kivu,1,0.4727,81.5351,57.9798,12.0438,63.4482,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Sud-Kivu,CD62,Sud-Kivu,1,0.4298,78.0096,55.0987,15.3262,49.8860,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Sud-Kivu,CD62,Sud-Kivu,1,0.3203,62.3065,51.4120,20.4750,34.2349,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Sud-Ubangi,CD42,Sud-Ubangi,1,0.4310,78.7709,54.7105,16.8686,51.0880,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Tanganyika,CD74,Tanganyika,1,0.3877,73.5525,52.7047,22.3864,43.8931,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Tshopo,CD51,Tshopo,1,0.3382,69.6289,48.5668,17.3517,32.7123,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Tshuapa,CD45,Tshuapa,1,0.4858,88.6466,54.8047,10.2266,61.6119,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COD,Y,Y,Équateur,CD41,Equateur,1,0.5329,91.9485,57.9557,7.5764,71.4796,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Équateur,CD41,Equateur,1,0.4461,83.9489,53.1392,13.7217,54.9172,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COD,Y,Y,Équateur,CD41,Equateur,1,0.4085,79.4500,51.4144,16.9076,46.3048,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,,,,0,0.2583,53.7507,48.0460,22.7543,25.6184,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,,,,0,0.1137,24.6858,46.0476,21.3518,9.6148,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Bouenza,CG01,Bouenza,1,0.2168,45.7386,47.3904,23.6015,19.8342,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Brazzaville,CG02,Brazzaville,1,0.1096,25.4049,43.1533,29.0881,6.0637,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Brazzaville,CG02,Brazzaville,1,0.0244,5.8414,41.6949,19.3115,1.5280,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Cuvette,CG03,Cuvette,1,0.1610,37.5082,42.9194,27.3015,10.5317,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Cuvette-Ouest,CG04,Cuvette-Ouest,1,0.2778,59.9083,46.3644,28.8696,26.3227,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Kouilou,CG05,Kouilou,1,0.2726,57.7397,47.2077,26.5222,23.1787,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Likouala,CG07,Likouala,1,0.2969,60.7902,48.8463,24.6896,29.7998,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Lékoumou,CG06,Lekoumou,1,0.2880,56.1381,51.3065,27.1667,29.7221,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Niari,CG08,Niari,1,0.1950,40.9139,47.6685,24.2248,17.7810,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Nord,CG08,Niari,1,0.3681,75.2561,48.9112,19.1008,36.7120,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Nord,CG08,Niari,1,0.2502,53.5387,46.7253,26.0502,21.8714,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Plateaux,CG09,Plateaux,1,0.2565,56.7198,45.2210,29.3053,18.2279,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Pointe Noire,CG10,Point-Noire,1,0.1397,31.8038,43.9359,31.0320,8.8758,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Pointe Noire,CG10,Point-Noire,1,0.0653,15.1538,43.0673,17.8759,3.9774,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Pointe-Noire,CG10,Point-Noire,1,0.0443,10.8671,40.8102,16.5256,2.0860,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Pool,CG11,Pool,1,0.2770,58.9478,46.9836,33.0368,26.3035,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Sangha,CG12,Sangha,1,0.2465,49.8415,49.4606,21.7527,23.9516,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +COG,N,Y,Sud,,,1,0.3896,78.1955,49.8185,15.1522,45.2483,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COG,N,Y,Sud,,,1,0.2432,51.0886,47.5952,26.2338,23.0244,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,,,,0,0.0241,5.9533,40.4422,7.6301,1.0362,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,,,,0,0.0197,4.8467,40.5624,6.2323,0.8261,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Antioquia Sin Medellin,,,1,0.0458,11.4366,40.0616,14.4036,1.9591,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Antioquia Sin Medellin,,,1,0.0511,12.1144,42.1469,13.7455,2.1889,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Atlantico, San Andres, Bolivar Norte",,,1,0.0090,2.3807,37.7831,3.9521,0.2101,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Atlantico, San Andres, Bolivar Norte",,,1,0.0079,2.0537,38.6585,3.2572,0.1758,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Barranquilla A. M.,,,1,0.0037,1.0093,37.0174,1.8794,0.0510,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Barranquilla A. M.,,,1,0.0037,1.0263,36.3268,1.1942,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Bogota,CO11,"Bogota, D.C.",1,0.0025,0.7226,35.1641,1.2120,0.0246,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Bogota,CO11,"Bogota, D.C.",1,0.0013,0.3423,37.1922,0.9386,0.0635,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Bolivar Sur, Sucre, Cordoba",,,1,0.0525,13.0792,40.1657,15.8648,1.6929,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Bolivar Sur, Sucre, Cordoba",,,1,0.0391,9.8950,39.5251,12.7844,1.2073,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Boyaca, Cmarca, Meta",,,1,0.0216,5.5744,38.7097,9.1669,0.7233,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Boyaca, Cmarca, Meta",,,1,0.0105,2.7914,37.6606,7.3122,0.1649,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Caldas, Risaralda, Quindio",,,1,0.0140,3.7566,37.2418,7.7270,0.3654,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Caldas, Risaralda, Quindio",,,1,0.0082,2.1834,37.7058,5.4355,0.2600,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Cali A.M.,CO17,Caldas,1,0.0043,1.0642,40.5089,2.4381,0.1755,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Cali A.M.,CO17,Caldas,1,0.0019,0.5428,34.5329,1.3017,0.0211,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Cauca Y Nari Sin Litoral,,,1,0.0509,11.9924,42.4700,11.0682,2.9712,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Cauca Y Nari Sin Litoral,,,1,0.0338,8.3585,40.3842,12.5521,1.5758,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Guajira, Cesar, Magdalena",,,1,0.0502,11.4689,43.7935,8.3422,3.4270,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Guajira, Cesar, Magdalena",,,1,0.0566,12.7893,44.2572,8.4448,3.8318,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Litoral Pacifico,,,1,0.0788,18.8902,41.6925,15.5865,4.1224,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Litoral Pacifico,,,1,0.0852,20.7901,40.9592,15.7093,3.5926,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Medellin A.M.,CO47,Magdalena,1,0.0019,0.5580,34.0110,2.3649,0.0000,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Medellin A.M.,CO47,Magdalena,1,0.0015,0.4149,35.8165,1.0903,0.0237,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Orinoquia Y Amazonia,,,1,0.0407,9.6885,41.9877,13.2173,2.1957,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Orinoquia Y Amazonia,,,1,0.0305,7.4164,41.1500,7.4777,1.6622,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Santanderes,CO68,Santander,1,0.0285,7.1595,39.7540,10.7884,1.0633,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Santanderes,CO68,Santander,1,0.0176,4.5393,38.8302,6.1994,0.4566,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Tolima, Huila, Caqueta",,,1,0.0349,8.8676,39.3672,10.7947,1.1096,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,"Tolima, Huila, Caqueta",,,1,0.0274,7.0913,38.6805,10.6416,0.9064,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Valle Sin Cali Ni Litoral,,,1,0.0099,2.4661,40.3434,7.1502,0.4163,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COL,Y,Y,Valle Sin Cali Ni Litoral,,,1,0.0062,1.6837,36.7602,4.1898,0.1626,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,,,,0,0.1707,34.6241,49.3081,22.2294,15.1204,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,,,,0,0.0848,19.3605,43.8090,19.4565,5.6797,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,Mwali,KM3,Moheli (Mwali),1,0.2269,46.1889,49.1322,20.2446,21.2271,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,Mwali,KM3,Moheli (Mwali),1,0.1104,25.8516,42.7094,22.7827,6.7746,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,Ndzuwani,,,1,0.2351,45.0756,52.1527,21.0517,23.1665,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,Ndzuwani,,,1,0.1225,26.4305,46.3500,20.4192,9.8370,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,Ngazidja,KM2,Grande Comore (Ngazidja),1,0.0921,21.4788,42.8572,23.8138,5.4240,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +COM,N,N,Ngazidja,KM2,Grande Comore (Ngazidja),1,0.0472,11.9873,39.3601,17.9997,1.8491,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +CRI,N,Y,,,,0,0.0020,0.5405,37.1216,2.4098,0.0151,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CRI,N,Y,Alajuela,CR2,Alajuela,1,0.0026,0.7362,35.6123,2.6602,0.0251,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CRI,N,Y,Cartago,CR3,Cartago,1,0.0011,0.2874,37.5267,2.3685,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CRI,N,Y,Guanacaste,CR5,Guanacaste,1,0.0012,0.3225,36.4180,1.2651,0.0188,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CRI,N,Y,Heredia,CR4,Heredia,1,0.0001,0.0333,36.6667,1.0715,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CRI,N,Y,Limón,CR7,Limon,1,0.0042,1.0415,40.4048,4.4198,0.0515,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CRI,N,Y,Puntarenas,CR6,Puntarenas,1,0.0032,0.8839,36.0872,4.2040,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CRI,N,Y,San José,CR1,San Jose,1,0.0017,0.4641,37.1974,1.7854,0.0126,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,,,,0,0.0027,0.7064,38.0604,2.6548,0.0942,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Artemisa,CU01,Artemisa,1,0.0000,0.0000,,0.4416,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Camagüey,CU02,Camaguey,1,0.0027,0.7953,33.3333,4.5950,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Ciego de Ávila,CU03,Ciego de Avila,1,0.0033,0.9211,35.9662,1.9920,0.0345,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Cienfuegos,CU04,Cienfuegos,1,0.0015,0.4492,33.3333,1.7272,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Granma,CU05,Granma,1,0.0046,1.2550,36.6780,5.6952,0.0856,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Guantánamo,CU06,Guantanamo,1,0.0038,1.0610,35.8122,3.1485,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Holguín,CU07,Holguin,1,0.0035,1.0125,35.0083,3.3624,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Isla de la Juventud,CU08,Isla de la Juventud,1,0.0000,0.0000,,0.2927,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,La Habana,CU09,La Habana,1,0.0000,0.0000,,0.1881,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Las Tunas,CU10,Las Tunas,1,0.0081,2.1758,37.0999,3.8772,0.1840,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Matanzas,CU11,Matanzas,1,0.0054,1.0780,50.0707,0.9032,0.8119,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Mayabeque,CU12,Mayabeque,1,0.0008,0.2058,38.9175,0.8341,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Pinar del Río,CU13,Pinar del Rio,1,0.0018,0.5093,35.5045,3.5936,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Sancti Spíritus,CU14,Sancti Spiritus,1,0.0016,0.4776,33.3333,3.1650,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Santiago de Cuba,CU15,Santiago de Cuba,1,0.0048,1.1835,40.6791,4.3571,0.1868,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +CUB,N,N,Villa Clara,CU16,Villa Clara,1,0.0009,0.2357,38.8889,2.7885,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +DOM,N,Y,,,,0,0.0298,7.2680,41.0265,10.6515,1.3094,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,,,,0,0.0142,3.6860,38.6245,4.8927,0.4088,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,,,,0,0.0109,2.8112,38.6999,3.8601,0.3574,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Ciabo Norte,,,1,0.0180,4.6157,39.0730,9.5896,0.3467,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Ciabo Norte,,,1,0.0098,2.6064,37.4240,4.2173,0.2840,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Ciabo Norte,,,1,0.0071,1.9489,36.6390,3.4394,0.2112,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Nordeste,DO01,Region Cibao Nordeste,1,0.0242,6.3006,38.3555,13.1672,0.5206,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Nordeste,DO01,Region Cibao Nordeste,1,0.0138,3.6685,37.5405,4.6682,0.1667,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Nordeste,DO01,Region Cibao Nordeste,1,0.0076,2.0345,37.4308,4.8691,0.1293,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Noroeste,DO02,Region Cibao Noroeste,1,0.0361,8.8633,40.7272,12.9275,1.1490,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Noroeste,DO02,Region Cibao Noroeste,1,0.0278,6.9314,40.0456,7.3668,0.9874,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Noroeste,DO02,Region Cibao Noroeste,1,0.0212,5.3626,39.4475,6.1796,0.5183,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Norte,DO03,Region Cibao Norte,1,0.0052,1.4097,36.7894,3.9750,0.1130,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +DOM,N,Y,Cibao Sur,DO04,Region Cibao Sur,1,0.0222,5.7307,38.7316,12.6473,0.5077,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Sur,DO04,Region Cibao Sur,1,0.0107,2.9196,36.7076,5.1329,0.1303,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Cibao Sur,DO04,Region Cibao Sur,1,0.0098,2.5625,38.4209,4.2609,0.5230,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Del Yuma,,,1,0.0439,10.4563,41.9654,14.0249,2.0862,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Del Yuma,,,1,0.0285,7.4286,38.3822,7.6264,0.6616,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Del Yuma,,,1,0.0150,3.8973,38.4835,5.8362,0.3225,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,El Valle,DO05,Region El Valle,1,0.0944,21.7405,43.4403,16.2018,6.4196,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,El Valle,DO05,Region El Valle,1,0.0461,10.8231,42.6230,13.5021,2.6096,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,El Valle,DO05,Region El Valle,1,0.0301,7.1506,42.0534,8.6206,1.1755,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Enriquillo,DO06,Region Enriquillo,1,0.0741,17.4381,42.5081,14.6723,3.7322,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Enriquillo,DO06,Region Enriquillo,1,0.0360,8.7902,40.8998,8.2305,1.7246,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Enriquillo,DO06,Region Enriquillo,1,0.0287,6.9027,41.5323,7.3002,1.4564,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Higuamo,DO07,Region Higuamo,1,0.0505,12.6968,39.7982,15.9525,1.6209,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Higuamo,DO07,Region Higuamo,1,0.0194,4.9928,38.9176,6.5417,0.3187,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Higuamo,DO07,Region Higuamo,1,0.0103,2.7588,37.1560,5.5500,0.2310,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Metropolitana,,,1,0.0157,3.7543,41.8458,6.6188,0.9981,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Metropolitana,,,1,0.0069,1.8783,36.9341,2.7016,0.1531,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Metropolitana,,,1,0.0077,1.9959,38.7061,1.6065,0.2850,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Ozama,DO08,Region Ozama,1,0.0043,1.1391,38.1232,2.2724,0.0366,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +DOM,N,Y,Valdesia,DO09,Region Valdesia,1,0.0411,9.8757,41.5780,12.1460,1.8894,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Valdesia,DO09,Region Valdesia,1,0.0171,4.4202,38.6424,6.7156,0.4627,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Valdesia,DO09,Region Valdesia,1,0.0110,2.9581,37.0571,5.2903,0.2350,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DOM,N,Y,Yuma,DO10,Region Yuma,1,0.0128,3.4160,37.4802,7.2703,0.1345,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +DZA,N,N,,,,0,0.0081,2.1050,38.4528,5.0897,0.2470,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,,,,0,0.0054,1.3808,39.1726,3.6072,0.2028,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Hauts Plateaux-Centre,,,1,0.0269,6.3867,42.1525,5.6744,1.6671,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Hauts Plateaux-Centre,,,1,0.0192,4.3624,44.0401,4.8456,1.3744,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Hauts Plateaux-Est,,,1,0.0061,1.6860,36.3301,7.2508,0.0000,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Hauts Plateaux-Est,,,1,0.0038,1.0290,36.9635,3.7516,0.0262,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Hauts Plateaux-Ouest,,,1,0.0188,4.8636,38.7430,5.7252,0.6173,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Hauts Plateaux-Ouest,,,1,0.0100,2.6334,38.1147,5.4667,0.1643,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Nord-Centre,,,1,0.0035,0.9754,36.2265,4.4804,0.0392,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Nord-Centre,,,1,0.0029,0.7435,38.4968,3.2840,0.1091,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Nord-Est,,,1,0.0032,0.8568,37.4157,3.5554,0.0571,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Nord-Est,,,1,0.0027,0.7150,37.9419,2.7714,0.0776,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Nord-Ouest,,,1,0.0068,1.9112,35.5642,4.6855,0.0952,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Nord-Ouest,,,1,0.0045,1.2072,36.9934,3.8038,0.0592,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Sud,,,1,0.0161,4.0496,39.7255,6.1024,0.6155,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +DZA,N,N,Sud,,,1,0.0087,2.3307,37.4585,3.4553,0.3196,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,,,,0,0.0187,4.6589,40.0436,7.6183,0.8123,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,,,,0,0.0113,2.9597,38.1344,6.3577,0.2619,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Azuay,EC01,Azuay,1,0.0169,4.3715,38.5807,5.7930,0.4484,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Azuay,EC01,Azuay,1,0.0038,1.0247,37.1342,6.2092,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Bolívar,EC02,Bolivar,1,0.0591,14.0087,42.1993,12.3151,3.9167,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Bolívar,EC02,Bolivar,1,0.0315,7.8731,40.0523,10.9806,1.3173,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Carchi,EC04,Carchi,1,0.0110,2.7727,39.6493,7.1861,0.2553,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Carchi,EC04,Carchi,1,0.0095,2.5658,36.9924,7.2794,0.3149,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Cañar,EC03,Canar,1,0.0196,4.9321,39.6454,7.5959,0.6121,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Cañar,EC03,Canar,1,0.0085,2.2404,38.0950,8.0797,0.2797,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Chimborazo,EC06,Chimborazo,1,0.0475,11.7656,40.3929,15.5447,2.3527,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Chimborazo,EC06,Chimborazo,1,0.0226,6.0508,37.2736,10.0142,0.2849,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Cotopaxi,EC05,Cotopaxi,1,0.0319,7.8301,40.6774,11.5100,1.9365,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Cotopaxi,EC05,Cotopaxi,1,0.0166,4.3318,38.2187,8.4819,0.3644,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,El Oro,EC07,El Oro,1,0.0073,1.9731,36.9549,4.7292,0.1668,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,El Oro,EC07,El Oro,1,0.0037,1.0514,35.4310,4.7054,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Esmeraldas,EC08,Esmeraldas,1,0.0305,7.6792,39.7171,12.9182,0.7740,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Esmeraldas,EC08,Esmeraldas,1,0.0161,4.3619,36.9465,9.3831,0.1380,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Galápagos,EC20,Galapagos,1,0.0033,0.9857,33.3333,1.0817,0.0000,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Galápagos,EC20,Galapagos,1,0.0023,0.6029,37.4259,8.2114,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Guayas,EC09,Guayas,1,0.0083,2.1957,37.7069,6.1510,0.2621,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Guayas,EC09,Guayas,1,0.0060,1.6306,36.6428,4.3644,0.0937,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Imbabura,EC10,Imbabura,1,0.0184,4.9361,37.2172,6.4054,0.5081,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Imbabura,EC10,Imbabura,1,0.0121,3.1903,37.8100,8.1325,0.2727,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Loja,EC11,Loja,1,0.0233,6.0553,38.4569,7.6904,0.6977,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Loja,EC11,Loja,1,0.0161,4.1459,38.9232,7.8844,0.3956,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Los Ríos,EC12,Los Rios,1,0.0247,5.8535,42.2700,11.8934,1.2805,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Los Ríos,EC12,Los Rios,1,0.0114,3.0424,37.5459,7.4643,0.2445,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Manabí,EC13,Manabi,1,0.0273,6.7217,40.5772,10.6928,1.5462,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Manabí,EC13,Manabi,1,0.0202,5.0459,40.1236,11.3239,0.5887,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Morona Santiago,EC14,Morona Santiago,1,0.0950,21.2957,44.6160,16.6454,5.9146,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Morona Santiago,EC14,Morona Santiago,1,0.0713,16.9160,42.1758,15.4576,3.7612,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Napo,EC15,Napo,1,0.0475,11.8968,39.9361,15.2425,2.6634,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Napo,EC15,Napo,1,0.0319,7.8954,40.4518,13.5766,1.2017,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Orellana,EC22,Orellana,1,0.0693,15.9087,43.5726,11.6429,4.4501,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Orellana,EC22,Orellana,1,0.0439,10.9740,40.0189,12.9045,1.4345,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Pastaza,EC16,Pastaza,1,0.0854,18.5458,46.0274,12.4314,6.3430,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Pastaza,EC16,Pastaza,1,0.0453,10.2714,44.0820,13.5259,3.0967,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Pichincha,EC17,Pichincha,1,0.0076,2.0759,36.6121,2.5025,0.1362,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Pichincha,EC17,Pichincha,1,0.0049,1.4375,34.0733,2.2314,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Santa Elena,EC24,Santa Elena,1,0.0178,4.3425,40.9740,12.6123,0.7404,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Santa Elena,EC24,Santa Elena,1,0.0134,3.6242,36.8449,8.4726,0.1218,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Santo Domingo,EC23,Santo Domingo de los Tsachilas,1,0.0113,2.8698,39.3020,7.8784,0.2714,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Santo Domingo,EC23,Santo Domingo de los Tsachilas,1,0.0089,2.4186,36.9475,5.4026,0.2002,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Sucumbios,EC21,Sucumbios,1,0.0340,8.1603,41.6494,13.5118,1.7515,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Sucumbios,EC21,Sucumbios,1,0.0169,4.2656,39.5235,9.4523,0.5981,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Tungurahua,EC18,Tungurahua,1,0.0145,3.7443,38.8287,7.2260,0.3058,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Tungurahua,EC18,Tungurahua,1,0.0094,2.7000,34.9308,5.6125,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Zamora Chinchipe,EC19,Zamora Chinchipe,1,0.0240,5.8920,40.7006,11.0171,1.2413,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Zamora Chinchipe,EC19,Zamora Chinchipe,1,0.0165,4.1333,39.7999,11.2104,0.6273,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ECU,N,Y,Zona No Delimitada,,,1,0.0031,0.7999,38.7717,6.5016,0.1293,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +EGY,N,Y,,,,0,0.0320,7.9812,40.0661,8.0303,1.1202,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,,,,0,0.0184,4.8918,37.5773,5.9769,0.5503,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Alexandria,EG02,Alexandria,1,0.0163,4.3729,37.2537,1.6227,0.3850,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Alexandria,EG02,Alexandria,1,0.0068,1.9893,34.3341,0.2389,0.1194,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Assuit,EG25,Assiut,1,0.0791,18.9975,41.6369,17.6211,3.0076,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Assuit,EG25,Assiut,1,0.0351,8.7766,39.9780,10.1330,1.7972,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Aswan,EG28,Aswan,1,0.0135,3.8122,35.4012,7.7303,0.0000,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Aswan,EG28,Aswan,1,0.0163,4.2679,38.1646,6.9565,0.3023,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Behera,EG18,Behera,1,0.0210,5.7203,36.7778,4.7458,0.4661,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Behera,EG18,Behera,1,0.0138,3.5055,39.3591,12.0639,0.6187,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Beni Suef,EG22,Beni Suef,1,0.0755,17.0365,44.3284,16.5049,4.1378,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Beni Suef,EG22,Beni Suef,1,0.0324,8.7567,37.0238,4.3200,1.2365,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Cairo,EG01,Cairo,1,0.0110,3.0799,35.6685,1.1310,0.2610,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Cairo,EG01,Cairo,1,0.0095,2.7892,34.2105,0.5432,0.1468,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Dakahlia,EG12,Dakahlia,1,0.0152,4.1351,36.8047,3.1808,0.2202,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Dakahlia,EG12,Dakahlia,1,0.0062,1.7793,34.6099,2.8202,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Damietta,EG11,Damietta,1,0.0055,1.5016,36.4583,5.2557,0.0000,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Damietta,EG11,Damietta,1,0.0127,3.2128,39.6807,12.6676,0.4148,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Fayoum,EG23,Fayoum,1,0.0828,18.9512,43.6986,20.4309,4.9585,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Fayoum,EG23,Fayoum,1,0.0370,9.3203,39.7243,7.6572,2.1089,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Frontier Governorates,,,1,0.0508,12.6149,40.2579,6.7810,1.9851,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Frontier Governorates,,,1,0.0217,5.7018,38.0717,8.2653,0.5651,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Gharbia,EG16,Gharbia,1,0.0087,2.4801,35.2427,1.3243,0.2167,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Gharbia,EG16,Gharbia,1,0.0135,3.7564,35.9516,2.9966,0.4292,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Giza,EG21,Giza,1,0.0269,6.9595,38.5936,8.6705,0.3699,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Giza,EG21,Giza,1,0.0260,7.1722,36.2126,3.5915,0.5010,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Ismailia,EG19,Ismailia,1,0.0256,6.7437,37.9762,2.6493,0.6262,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Ismailia,EG19,Ismailia,1,0.0118,3.3542,35.3098,2.2213,0.1713,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Kafr el-Sheikh,EG15,Kafr El-Shikh,1,0.0256,6.7279,37.9837,8.7955,0.4595,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Kafr el-Sheikh,EG15,Kafr El-Shikh,1,0.0097,2.8120,34.4003,2.2732,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Kalyubia,EG14,Kalyoubia,1,0.0133,3.9710,33.5010,2.8472,0.0000,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Kalyubia,EG14,Kalyoubia,1,0.0098,2.7024,36.2532,4.1138,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Luxor,EG29,Luxor,1,0.0203,5.1272,39.6325,8.5587,0.4037,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Luxor,EG29,Luxor,1,0.0154,3.6827,41.7483,7.0012,0.6625,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Matroh,EG33,Matrouh,1,0.0415,10.9525,37.9231,18.7616,1.1977,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +EGY,N,Y,Menoufia,EG17,Menoufia,1,0.0209,5.8143,35.9547,3.4434,0.2258,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Menoufia,EG17,Menoufia,1,0.0077,2.1251,36.0397,3.6305,0.1864,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Menya,EG24,Menia,1,0.0708,15.9463,44.4042,21.8890,3.5022,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Menya,EG24,Menia,1,0.0302,8.0335,37.6250,6.4304,0.8196,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,New Valley,EG32,New Valley,1,0.0039,1.1174,34.7247,3.0799,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +EGY,N,Y,Port Said,EG03,Port Said,1,0.0124,3.4291,36.1275,1.1599,0.2521,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Port Said,EG03,Port Said,1,0.0007,0.2071,34.0741,2.4160,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Qena,EG27,Qena,1,0.0404,9.3927,43.0409,17.2316,1.9774,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Qena,EG27,Qena,1,0.0122,3.4308,35.6045,7.6572,0.1259,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Red Sea,EG31,Red Sea,1,0.0184,4.7497,38.6505,3.4998,0.4254,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +EGY,N,Y,Sharkia,EG13,Sharkia,1,0.0307,8.3369,36.7873,9.1340,0.6032,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Sharkia,EG13,Sharkia,1,0.0210,5.5382,37.8666,12.0140,0.0995,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Souhag,EG26,Suhag,1,0.0603,14.9317,40.3560,13.5121,2.5412,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Souhag,EG26,Suhag,1,0.0382,9.5749,39.9176,11.0347,2.0183,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Suez,EG04,Suez,1,0.0054,1.4811,36.7742,1.3856,0.0000,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +EGY,N,Y,Suez,EG04,Suez,1,0.0051,1.3941,36.3682,0.6450,0.1457,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,,,,0,0.4914,83.4629,58.8719,8.0548,64.0285,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,,,,0,0.4362,77.4277,56.3344,12.5533,53.9335,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,,,,0,0.3667,68.7734,53.3239,18.3174,41.8680,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Addis Ababa,ET14,Addis Ababa,1,0.0729,18.1137,40.2253,12.1284,4.0455,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Addis Ababa,ET14,Addis Ababa,1,0.0324,8.4304,38.3812,10.0710,1.6578,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Addis Ababa,ET14,Addis Ababa,1,0.0433,11.4058,37.9722,7.6818,1.2941,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Afar,ET02,Afar,1,0.5582,84.6223,65.9625,7.6664,72.9479,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Afar,ET02,Afar,1,0.5239,85.9201,60.9807,5.5355,69.6215,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Afar,ET02,Afar,1,0.4865,84.6677,57.4609,7.6310,62.2944,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Amhara,ET03,Amhara,1,0.4945,84.9897,58.1818,8.9697,63.2401,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Amhara,ET03,Amhara,1,0.4394,79.4462,55.3098,13.8351,55.6355,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Amhara,ET03,Amhara,1,0.3603,69.2821,52.0087,20.9657,38.6099,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Benishangul-Gumuz,ET06,Benishangul Gumz,1,0.5126,86.6510,59.1556,9.3163,64.9223,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Benishangul-Gumuz,ET06,Benishangul Gumz,1,0.4215,76.4831,55.1067,17.6277,49.6559,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Benishangul-Gumuz,ET06,Benishangul Gumz,1,0.3409,65.3798,52.1472,25.5741,33.5630,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Dire Dawa,ET15,Dire Dawa,1,0.2844,48.6760,58.4242,12.9939,35.3259,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Dire Dawa,ET15,Dire Dawa,1,0.2557,44.9600,56.8645,14.2689,31.2937,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Dire Dawa,ET15,Dire Dawa,1,0.1777,33.2518,53.4345,13.1464,20.5092,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Gambela,ET12,Gambela,1,0.3589,70.1065,51.1900,18.3346,36.5995,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Gambela,ET12,Gambela,1,0.2672,56.6075,47.2058,25.4679,22.8634,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Gambela,ET12,Gambela,1,0.2481,54.1212,45.8477,29.9259,21.6126,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Harari,ET13,Harari,1,0.2676,48.0454,55.7059,16.7141,31.0896,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Harari,ET13,Harari,1,0.2702,50.5193,53.4836,11.4744,28.5031,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Harari,ET13,Harari,1,0.2410,45.9695,52.4293,13.1541,26.6673,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Oromia,ET04,Oromia,1,0.5178,87.3910,59.2474,7.3129,68.2366,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Oromia,ET04,Oromia,1,0.4765,82.0374,58.0848,9.6810,58.8501,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Oromia,ET04,Oromia,1,0.3848,71.5911,53.7545,17.0995,44.3840,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,SNNPR,ET07,Snnp,1,0.5219,87.8588,59.3984,7.0022,69.4451,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,SNNPR,ET07,Snnp,1,0.4358,79.1733,55.0459,16.4520,53.2422,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,SNNPR,ET07,Snnp,1,0.3626,69.5917,52.0974,23.9778,41.1500,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Snnpr,ET07,Snnp,1,0.3626,69.5917,52.0974,23.9778,41.1500,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ETH,Y,Y,Somali,ET05,Somali,1,0.5430,87.8841,61.7853,6.8714,71.6631,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Somali,ET05,Somali,1,0.5183,87.2467,59.4013,9.0288,67.8739,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Somali,ET05,Somali,1,0.5295,89.9963,58.8349,7.2558,69.7939,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Tigray,ET01,Tigray,1,0.4622,79.4967,58.1441,9.0745,59.4988,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Tigray,ET01,Tigray,1,0.3771,72.0953,52.3024,14.7214,44.3562,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ETH,Y,Y,Tigray,ET01,Tigray,1,0.3050,58.0423,52.5435,16.2162,33.8002,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +FJI,N,N,,,,0,0.0058,1.5113,38.0969,7.3872,0.2136,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +FJI,N,N,Central,FJ4,Central,1,0.0043,1.0797,40.1316,6.7253,0.2080,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +FJI,N,N,Eastern,FJ3,Eastern,1,0.0128,3.1906,40.2387,11.2308,0.6738,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +FJI,N,N,Northern,FJ1,Northern,1,0.0146,3.7647,38.7167,11.3302,0.7223,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +FJI,N,N,Western,FJ2,Western,1,0.0035,1.0214,34.4204,6.3421,0.0000,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GAB,N,N,,,,0,0.0680,15.2464,44.5979,18.2045,4.8629,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,,,,0,0.0348,8.2122,42.4258,14.3047,2.1735,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Estuaire,GAB001,Estuaire,1,0.0624,14.7637,42.2928,17.7448,3.5408,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Estuaire,GAB001,Estuaire,1,0.0218,5.1362,42.4054,12.6045,1.4931,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Haut-Ogooué,GAB002,Haut-Ogooue,1,0.0996,22.5487,44.1508,19.8609,7.2892,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Haut-Ogooué,GAB002,Haut-Ogooue,1,0.0558,13.4774,41.4250,19.1825,3.4749,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Libreville,,,1,0.0095,2.4647,38.6741,11.7122,0.2889,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GAB,N,N,Libreville/Port Gentil,,,1,0.0125,3.3741,36.9094,15.8883,0.0787,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Libreville/Port Gentil,,,1,0.0104,2.6616,39.1541,10.6498,0.2345,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Moyen-Ogooué,GAB003,Moyen-Ogooue,1,0.1296,28.1963,45.9608,28.3148,11.0474,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Moyen-Ogooué,GAB003,Moyen-Ogooue,1,0.0561,13.4601,41.6800,23.3970,3.0699,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ngounié,GAB004,Ngounie,1,0.1942,42.0640,46.1735,17.9994,14.4835,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ngounié,GAB004,Ngounie,1,0.0938,20.4576,45.8491,19.5688,7.6680,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Nyanga,GAB005,Nyanga,1,0.1870,41.9605,44.5745,15.8301,14.5640,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Nyanga,GAB005,Nyanga,1,0.1074,25.2856,42.4817,21.9635,8.5104,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ogooué Maritime,GAB008,Ogooue-Maritime,1,0.0864,20.2853,42.5734,22.0045,4.9049,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ogooué Maritime,GAB008,Ogooue-Maritime,1,0.0638,15.5862,40.9208,17.8254,2.9314,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ogooué-Ivindo,GAB006,Ogooue-Ivindo,1,0.2655,53.7518,49.3862,21.8456,27.0947,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ogooué-Ivindo,GAB006,Ogooue-Ivindo,1,0.1764,38.5758,45.7382,25.6701,15.2622,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ogooué-Lolo,GAB007,Ogooue-Lolo,1,0.1773,36.9516,47.9862,24.6307,15.8807,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Ogooué-Lolo,GAB007,Ogooue-Lolo,1,0.1057,23.8419,44.3423,18.6421,7.9355,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Port Gentil,,,1,0.0233,5.5524,41.9034,10.3405,1.2685,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GAB,N,N,Woleu-Ntem,GAB009,Woleu-Ntem,1,0.1028,23.4624,43.8351,25.9636,6.9321,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GAB,N,N,Woleu-Ntem,GAB009,Woleu-Ntem,1,0.0538,13.1890,40.8142,21.1261,2.7503,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GEO,N,N,,,,0,0.0012,0.3401,36.5923,2.0839,0.0127,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GHA,N,N,,,,0,0.1803,37.4592,48.1337,21.2019,15.4450,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,,,,0,0.1526,31.8548,47.9055,20.7446,12.8233,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,,,,0,0.1297,28.4154,45.6565,21.2941,9.7132,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,,,,0,0.1114,24.6799,45.1242,20.0777,8.3963,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,,,,0,0.0968,21.2775,45.5129,18.1422,7.3141,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Ahafo,GH01,Ahafo,1,0.1269,29.8100,42.5692,29.0706,6.3139,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GHA,N,N,Ashanti,GH02,Ashanti,1,0.1089,24.8887,43.7699,21.2632,7.2929,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Ashanti,GH02,Ashanti,1,0.0992,22.9222,43.2595,20.8945,5.9547,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Ashanti,GH02,Ashanti,1,0.0768,17.7449,43.2828,19.6973,4.3590,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Ashanti,GH02,Ashanti,1,0.0727,17.1509,42.4034,21.5257,3.9053,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Ashanti,GH02,Ashanti,1,0.0424,10.6267,39.8666,20.3659,1.5997,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Bono,GH03,Bono,1,0.0661,15.9302,41.4985,21.1709,4.4621,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GHA,N,N,Bono East,GH04,Bono East,1,0.1709,34.7825,49.1223,21.1389,14.6254,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GHA,N,N,Brong Ahafo,,,1,0.1948,40.2777,48.3752,23.5183,16.2753,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Brong Ahafo,,,1,0.1768,38.0253,46.5067,24.2757,13.6864,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Brong Ahafo,,,1,0.1307,30.7548,42.5042,26.4241,7.9512,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Brong Ahafo,,,1,0.1104,24.5574,44.9451,20.9517,8.3374,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Brong Ahafo,,,1,0.1065,23.0098,46.2714,20.6489,8.2926,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Central,GH05,Central,1,0.1711,39.0604,43.8081,22.9847,12.6371,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Central,GH05,Central,1,0.1198,27.7798,43.1316,20.5107,6.4137,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Central,GH05,Central,1,0.1332,29.3053,45.4438,30.7733,9.8117,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Central,GH05,Central,1,0.0848,20.5746,41.1960,18.1596,3.9519,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Central,GH05,Central,1,0.0590,14.7691,39.9455,20.5699,2.6965,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Eastern,GH06,Eastern,1,0.1310,30.9449,42.3341,29.1091,6.5926,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Eastern,GH06,Eastern,1,0.1004,22.8629,43.9086,23.4836,5.3761,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Eastern,GH06,Eastern,1,0.1182,26.5848,44.4516,18.1015,8.4322,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Eastern,GH06,Eastern,1,0.0713,17.0141,41.9209,20.1932,3.4612,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Eastern,GH06,Eastern,1,0.0566,14.1104,40.1280,16.7137,1.6228,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Greater Accra,GH07,Greater Accra,1,0.0414,9.6564,42.8647,14.2482,2.0212,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Greater Accra,GH07,Greater Accra,1,0.0354,8.5993,41.1894,14.2260,2.1923,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Greater Accra,GH07,Greater Accra,1,0.0428,10.0516,42.5778,17.3427,1.9941,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Greater Accra,GH07,Greater Accra,1,0.0338,7.9721,42.3475,11.8202,1.6343,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Greater Accra,GH07,Greater Accra,1,0.0154,3.9580,38.9209,11.0597,0.2882,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,North East,GH08,Northern,1,0.3394,68.7396,49.3695,16.9351,34.2038,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GHA,N,N,Northern,GH08,Northern,1,0.4316,75.3477,57.2876,10.1790,48.7990,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Northern,GH08,Northern,1,0.3985,71.2420,55.9356,14.4383,45.2913,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Northern,GH08,Northern,1,0.3555,69.9089,50.8518,15.6428,35.8875,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Northern,GH08,Northern,1,0.2956,59.3893,49.7811,19.0110,30.7695,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Northern,GH08,Northern,1,0.2962,58.6857,50.4786,16.8188,29.4659,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Oti,GH10,Oti,1,0.2192,46.7207,46.9186,19.1463,19.4650,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GHA,N,N,Savannah,GH11,Savannah,1,0.3255,59.8254,54.4087,15.3578,36.7346,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GHA,N,N,Upper East,GH12,Upper East,1,0.3597,70.2106,51.2284,21.1017,38.0497,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper East,GH12,Upper East,1,0.3392,66.5329,50.9819,25.2275,33.4176,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper East,GH12,Upper East,1,0.2510,55.5402,45.1956,25.2359,17.1959,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper East,GH12,Upper East,1,0.2142,46.3411,46.2151,28.1951,15.9721,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper East,GH12,Upper East,1,0.1292,30.1245,42.8903,24.5379,8.3374,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper West,GH13,Upper West,1,0.3079,64.9872,47.3797,20.3422,27.7930,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper West,GH13,Upper West,1,0.3210,61.5505,52.1512,19.5463,33.3570,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper West,GH13,Upper West,1,0.2371,51.0582,46.4352,18.3490,17.6410,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper West,GH13,Upper West,1,0.2017,43.7541,46.1087,22.9564,15.2330,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Upper West,GH13,Upper West,1,0.1627,36.1447,45.0101,25.2512,12.3875,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Volta,GH14,Volta,1,0.1766,38.5134,45.8649,27.5657,13.3844,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Volta,GH14,Volta,1,0.1619,35.3120,45.8359,28.2496,13.6460,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Volta,GH14,Volta,1,0.1326,29.7629,44.5596,25.0609,9.2091,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Volta,GH14,Volta,1,0.1398,30.1585,46.3470,25.0403,12.9614,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Volta,GH14,Volta,1,0.1214,27.8001,43.6738,17.4610,8.2148,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Western,GH15,Western,1,0.1514,35.0505,43.2018,25.5836,10.2299,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Western,GH15,Western,1,0.1387,30.4868,45.5034,22.8780,10.1718,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Western,GH15,Western,1,0.0852,20.3066,41.9547,21.9307,5.4284,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Western,GH15,Western,1,0.0819,19.8180,41.3435,20.2046,4.4262,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Western,GH15,Western,1,0.0582,13.4084,43.4429,17.4395,4.3926,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GHA,N,N,Western North,GH16,Western North,1,0.1015,22.8710,44.3907,22.6523,8.0351,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GIN,N,N,,,,0,0.4209,71.2318,59.0914,13.9155,51.1834,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,,,,0,0.3359,61.8858,54.2825,17.1221,37.6972,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,,,,0,0.3636,64.9516,55.9788,16.4977,42.3275,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Boké,GN001,Boke,1,0.3892,69.8083,55.7577,14.1120,44.1805,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Boké,GN001,Boke,1,0.3253,61.0933,53.2490,19.8822,36.3470,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Boké,GN001,Boke,1,0.4137,70.9897,58.2789,12.2442,49.4934,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Conakry,GN002,Conakry,1,0.0925,20.4724,45.1820,28.5293,6.9916,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Conakry,GN002,Conakry,1,0.0679,16.0088,42.4116,28.7993,2.8398,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Conakry,GN002,Conakry,1,0.0539,12.2046,44.1975,31.5350,3.2943,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Faranah,GN003,Faranah,1,0.5385,88.2501,61.0189,8.1560,68.5511,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Faranah,GN003,Faranah,1,0.5011,84.0706,59.6102,7.9227,61.1332,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Faranah,GN003,Faranah,1,0.4787,82.3774,58.1117,12.5249,59.6770,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Kankan,GN004,Kankan,1,0.5730,87.9153,65.1723,6.7366,74.5118,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Kankan,GN004,Kankan,1,0.4583,81.2672,56.3884,10.4630,55.7212,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Kankan,GN004,Kankan,1,0.4149,75.5187,54.9456,13.3242,46.6347,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Kindia,GN005,Kindia,1,0.4663,78.0358,59.7566,11.2848,58.1803,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Kindia,GN005,Kindia,1,0.3143,57.7272,54.4503,19.4467,35.5966,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Kindia,GN005,Kindia,1,0.3603,63.1660,57.0398,15.8300,41.6690,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Labé,GN006,Labe,1,0.4938,84.0711,58.7309,8.6264,62.3955,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Labé,GN006,Labe,1,0.4542,80.6116,56.3415,9.5274,53.2136,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Labé,GN006,Labe,1,0.4802,82.5080,58.2059,8.9985,58.5027,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Mamou,GN007,Mamou,1,0.4834,83.9280,57.5958,9.9840,57.4489,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Mamou,GN007,Mamou,1,0.4346,78.5760,55.3124,10.7567,50.2240,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,Mamou,GN007,Mamou,1,0.3849,70.8407,54.3264,16.4467,45.1687,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,N’Zérékoré,GN008,Nzerekore,1,0.4695,81.1769,57.8396,15.1851,55.5704,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,N’Zérékoré,GN008,Nzerekore,1,0.3840,74.6177,51.4624,16.4824,40.8182,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GIN,N,N,N’Zérékoré,GN008,Nzerekore,1,0.4177,76.7910,54.3929,15.9812,47.9929,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,,,,0,0.2810,54.6503,51.4262,21.3218,30.6661,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,,,,0,0.2036,41.5968,48.9552,22.8976,18.8106,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,,,,0,0.1797,38.0728,47.1951,23.6767,15.6959,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Banjul,GM01,Banjul City Council,1,0.0679,15.5910,43.5690,28.2098,3.2352,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Banjul,GM01,Banjul City Council,1,0.0374,8.8696,42.1361,24.2521,1.1815,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Banjul,GM01,Banjul City Council,1,0.0396,9.2281,42.9379,24.1316,1.2765,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Basse,,,1,0.4596,81.7026,56.2564,12.4751,61.0976,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Basse,,,1,0.3603,70.3655,51.2075,17.3906,38.9387,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Basse,,,1,0.3000,58.6865,51.1142,23.7774,29.3798,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Brikama,,,1,0.1992,43.8552,45.4178,23.9358,14.6838,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Brikama,,,1,0.1271,28.3255,44.8843,28.2429,9.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Brikama,,,1,0.1293,29.8023,43.3749,24.9134,8.3722,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Janjanbureh,,,1,0.4286,77.5571,55.2620,12.4662,53.4614,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Janjanbureh,,,1,0.3922,73.5363,53.3292,13.9075,43.4430,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Janjanbureh,,,1,0.3827,74.8410,51.1408,12.1670,44.7441,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kanifing,GM05,Kanifing Municipal Council,1,0.1270,26.8972,47.2310,31.0249,10.5194,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kanifing,GM05,Kanifing Municipal Council,1,0.0755,17.6982,42.6442,24.6906,3.7037,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kanifing,GM05,Kanifing Municipal Council,1,0.0638,15.2372,41.8690,27.2243,2.4386,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kerewan,,,1,0.3502,66.7210,52.4844,19.2198,44.0543,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kerewan,,,1,0.3250,65.6421,49.5083,16.2908,30.9442,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kerewan,,,1,0.2426,51.3756,47.2257,23.9830,23.8824,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kuntaur,,,1,0.5228,89.7719,58.2409,7.5833,67.1019,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kuntaur,,,1,0.4694,81.8785,57.3239,11.2804,55.7980,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Kuntaur,,,1,0.4185,78.4385,53.3476,13.6406,49.2383,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Mansakonko,,,1,0.2697,56.9969,47.3210,22.0988,23.7835,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GMB,N,N,Mansankonko,,,1,0.3060,63.3296,48.3233,24.4104,28.7358,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Mansankonko,,,1,0.1985,44.9977,44.1224,24.5862,15.3735,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GMB,N,N,Mansankonko,,,1,0.2463,52.5430,46.8710,20.9829,21.3130,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,,,,0,0.3630,66.0480,54.9653,20.3014,38.9156,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,,,,0,0.3407,64.3963,52.9050,19.9565,35.8817,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Bafatá,GW01,Bafata,1,0.5288,86.7620,60.9467,9.8368,62.9611,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Bafatá,GW01,Bafata,1,0.4248,78.5797,54.0563,14.0404,49.1064,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Biombo,GW02,Biombo,1,0.3693,68.9333,53.5727,27.1034,40.3551,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Biombo,GW02,Biombo,1,0.2857,59.2593,48.2109,30.4729,23.5723,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Bolama,GW03,Bolama/Bijagos,1,0.2977,59.2465,50.2448,36.1184,29.6603,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Bolama,GW03,Bolama/Bijagos,1,0.3240,66.8605,48.4543,25.0475,31.0471,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Cacheu,GW04,Cacheu,1,0.3176,65.7034,48.3390,30.1147,25.2860,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Cacheu,GW04,Cacheu,1,0.2922,61.5249,47.4979,30.3766,22.7301,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Gabú,GW05,Gabu,1,0.5268,88.8333,59.3033,7.2048,65.6576,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Gabú,GW05,Gabu,1,0.4895,83.6488,58.5130,10.6515,58.2575,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Oio,GW06,Oio,1,0.5242,85.8798,61.0442,12.4576,61.3031,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Oio,GW06,Oio,1,0.4763,83.3954,57.1083,11.7769,58.5439,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Quinara,GW07,Quinara,1,0.4077,76.8477,53.0503,20.4597,44.4911,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Quinara,GW07,Quinara,1,0.3348,67.8942,49.3179,26.2327,30.4014,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,SAB,,,1,0.1514,34.6385,43.7176,28.3288,10.0817,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,SAB,,,1,0.1096,25.8329,42.4075,25.8305,5.9989,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Tombali,GW09,Tombali,1,0.4391,81.7293,53.7314,15.1911,49.1490,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GNB,N,N,Tombali,GW09,Tombali,1,0.3772,74.1282,50.8910,22.1270,35.9503,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GTM,Y,Y,,,,0,0.1335,28.8818,46.2290,21.0876,11.2154,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Alta Verapaz,GT16,Alta Verapaz,1,0.2545,54.0348,47.0975,17.5047,21.1980,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Baja Verapaz,GT15,Baja Verapaz,1,0.1750,37.5761,46.5607,22.4712,15.1166,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Chimaltenango,GT04,Chimaltenango,1,0.1040,22.8431,45.5463,28.1019,8.4077,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Chiquimula,GT20,Chiquimula,1,0.2197,44.2429,49.6549,17.4550,23.8364,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,El Progreso,GT02,El Progreso,1,0.0806,18.3265,43.9620,18.8378,6.0369,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Escuintla,GT05,Escuintla,1,0.0727,17.2948,42.0070,22.1076,4.6831,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Guatemala Municipio,,,1,0.0155,3.5579,43.5541,10.4696,1.4184,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Guatemala Resto,,,1,0.0375,8.7702,42.8022,16.9275,2.2523,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Huehuetenango,GT13,Huehuetenango,1,0.2332,47.2886,49.3081,23.7616,23.3231,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Izabal,GT18,Izabal,1,0.1283,29.3664,43.6848,17.8425,8.4301,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Jalapa,GT21,Jalapa,1,0.1911,38.9965,49.0073,18.3581,18.4440,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Jutiapa,GT22,Jutiapa,1,0.1247,26.6278,46.8471,21.6118,12.0503,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Petén,GT17,Peten,1,0.1732,38.4675,45.0133,18.5099,13.3522,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Quetzaltenango,GT09,Quetzaltenango,1,0.1082,24.8945,43.4782,25.3083,7.2236,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Quiché,GT14,Quiche,1,0.2285,48.3154,47.2882,25.0134,20.8399,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Retalhuleu,GT11,Retalhuleu,1,0.1147,26.0260,44.0573,21.1456,8.3521,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Sacatepéquez,GT03,Sacatepequez,1,0.0599,13.6701,43.8070,17.3281,4.9208,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,San Marcos,GT12,San Marcos,1,0.1461,31.4935,46.3941,26.4648,12.4632,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Santa Rosa,GT06,Santa Rosa,1,0.1013,23.3803,43.3405,20.5742,5.9149,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Sololá,GT07,Solola,1,0.1111,25.7999,43.0577,32.9031,6.7839,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Suchitepéquez,GT10,Suchitepequez,1,0.1264,29.4716,42.8843,21.6821,8.3329,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Totonicapán,GT08,Totonicapan,1,0.1574,34.4459,45.6997,27.7217,12.2730,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GTM,Y,Y,Zacapa,GT19,Zacapa,1,0.1276,26.3311,48.4611,19.4855,12.4794,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,,,,0,0.0227,5.4256,41.8847,9.7092,1.2123,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,,,,0,0.0143,3.4433,41.6075,6.0134,0.6531,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,,,,0,0.0072,1.8236,39.2885,6.4990,0.2232,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,Barima-Waini,GY01,Barima-Waini,1,0.0634,15.4633,40.9816,17.8110,2.0296,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Coastal,,,1,0.0086,2.2413,38.5558,8.1282,0.2554,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,Coastal,,,1,0.0044,1.1059,39.5591,4.1091,0.1404,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,Coastal,,,1,0.0024,0.6594,36.5960,5.4004,0.0386,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,Cuyuni-Mazaruni,GY07,Cuyuni-Mazaruni,1,0.0537,12.6148,42.5915,13.4915,3.4112,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Demerara-Mahaica,GY04,Demerara-Mahaica,1,0.0015,0.4618,33.3333,3.6076,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,East Berbice-Corentyne,GY06,East Berbice-Corentyne,1,0.0049,1.2541,38.8326,10.7914,0.0336,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Essequibo Islands-West Demerara,GY03,Essequibo Islands-West Demerara,1,0.0009,0.2504,34.4198,3.8932,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Interior,,,1,0.1316,30.0469,43.8048,21.9338,8.6120,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,Interior,,,1,0.0773,18.2247,42.3935,18.0558,3.8958,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,Interior,,,1,0.0579,14.2458,40.6183,18.2207,2.1924,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +GUY,N,Y,Mahaica-Berbice,GY05,Mahaica Berbice,1,0.0003,0.0688,38.8889,9.6910,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Pomeroon-Supenaam,GY02,Pomeroon-Supenaam,1,0.0085,2.2417,38.0258,7.5130,0.3292,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Potaro-Siparuni,GY08,Potaro-Siparuni,1,0.1019,22.9816,44.3258,20.2366,6.6846,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Upper Demerara-Berbice,GY10,Upper Demerara-Berbice,1,0.0031,0.7695,39.7726,3.1391,0.1949,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +GUY,N,Y,Upper Takutu-Upper Essequibo,GY09,Upper Takutu-Upper Essequibo,1,0.0472,12.4233,37.9743,20.4130,0.8453,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +HND,Y,Y,,,,0,0.1859,36.6568,50.7258,21.3063,17.9512,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,,,,0,0.1077,22.8266,47.1655,22.6297,8.2266,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,,,,0,0.0487,10.8403,44.9147,18.6999,2.8882,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Atlántida,HN01,Atlantida,1,0.0746,16.7675,44.4767,17.2752,4.2134,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Atlántida,HN01,Atlantida,1,0.0547,12.1134,45.1847,16.7259,3.1956,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Atlántida,HN01,Atlantida,1,0.0213,5.5280,38.5078,13.4550,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Choluteca,HN06,Choluteca,1,0.2575,50.9986,50.4860,26.3107,25.7803,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Choluteca,HN06,Choluteca,1,0.1290,29.3554,43.9486,31.3745,7.5404,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Choluteca,HN06,Choluteca,1,0.0528,11.8484,44.5957,26.5852,2.7917,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Colón,HN02,Colon,1,0.1306,25.8492,50.5343,20.1376,11.3403,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Colón,HN02,Colon,1,0.0586,13.1456,44.5809,19.8609,3.7298,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Colón,HN02,Colon,1,0.0343,7.3581,46.5848,19.4945,2.1917,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Comayauga,HN03,Comayagua,1,0.2048,40.3944,50.6974,25.0730,18.5499,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Comayauga,HN03,Comayagua,1,0.1265,27.4112,46.1360,29.7201,8.3929,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Comayauga,HN03,Comayagua,1,0.0664,14.0563,47.2381,22.0085,5.0441,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Copán,HN04,Copan,1,0.3357,60.6262,55.3726,19.2206,37.3976,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Copán,HN04,Copan,1,0.1897,37.9354,50.0021,23.2769,17.5038,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Copán,HN04,Copan,1,0.0992,20.8992,47.4469,23.4472,7.7451,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Cortés,HN05,Cortes,1,0.0632,13.8727,45.5491,16.5907,4.8029,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Cortés,HN05,Cortes,1,0.0244,5.5562,43.9439,10.3909,1.1354,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Cortés,HN05,Cortes,1,0.0114,2.7948,40.6546,8.1871,0.1690,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Distrito Central,,,1,0.0066,1.5644,42.0409,4.1066,0.4123,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +HND,Y,Y,El Paraíso,HN07,El Paraiso,1,0.2646,51.6290,51.2529,27.6310,27.2628,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,El Paraíso,HN07,El Paraiso,1,0.1861,38.6082,48.2043,30.3495,16.5389,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,El Paraíso,HN07,El Paraiso,1,0.0493,11.3702,43.4014,25.6896,2.0428,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Francisco Morazán,HN08,Francisco Morazan,1,0.0992,20.8096,47.6540,20.6192,7.3861,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Francisco Morazán,HN08,Francisco Morazan,1,0.0407,9.0367,45.0573,16.0667,2.6535,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Francisco Morazán,HN08,Francisco Morazan,1,0.0213,4.9517,42.9956,11.8282,0.9900,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Gracias a Dios,HN09,Gracias a Dios,1,0.1621,35.6204,45.4937,26.0300,13.4863,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +HND,Y,Y,Intibucá,HN10,Intibuca,1,0.3680,68.9493,53.3753,17.2311,40.8471,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Intibucá,HN10,Intibuca,1,0.2261,45.4838,49.7065,33.3272,19.6682,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Intibucá,HN10,Intibuca,1,0.1006,22.3058,45.1124,32.3603,7.2285,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Islas de la Bahía,HN11,Islas de La Bahia,1,0.0037,1.0093,36.1892,8.4278,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +HND,Y,Y,La Paz,HN12,La Paz,1,0.3255,62.1814,52.3393,20.8343,36.4404,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,La Paz,HN12,La Paz,1,0.1515,33.3203,45.4592,27.7225,10.5183,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,La Paz,HN12,La Paz,1,0.0714,15.6864,45.5487,28.8829,4.2002,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Lempira,HN13,Lempira,1,0.4283,77.2789,55.4251,15.2764,50.9815,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Lempira,HN13,Lempira,1,0.2870,55.6247,51.5889,30.3654,28.5446,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Lempira,HN13,Lempira,1,0.1003,22.3566,44.8628,29.3878,5.9374,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Ocotepeque,HN14,Ocotepeque,1,0.2738,52.7202,51.9354,21.8732,27.9873,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Ocotepeque,HN14,Ocotepeque,1,0.1313,27.8121,47.1917,30.4394,11.3344,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Ocotepeque,HN14,Ocotepeque,1,0.0524,11.9088,43.9603,24.3339,2.5649,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Olancho,HN15,Olancho,1,0.3010,58.3567,51.5719,24.2681,30.2130,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Olancho,HN15,Olancho,1,0.1549,32.7133,47.3431,27.8001,11.9938,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Olancho,HN15,Olancho,1,0.0959,20.5955,46.5463,19.2080,6.2879,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,San Pedro Sula,,,1,0.0052,1.5021,34.5807,4.7230,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +HND,Y,Y,Santa Bárbara,HN16,Santa Barbara,1,0.2750,55.4795,49.5643,26.8989,24.8891,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Santa Bárbara,HN16,Santa Barbara,1,0.1491,32.7967,45.4713,32.0115,9.8321,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Santa Bárbara,HN16,Santa Barbara,1,0.0450,10.2690,43.8279,24.4080,2.6592,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Valle,HN17,Valle,1,0.2307,48.8016,47.2791,29.8924,19.0607,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Valle,HN17,Valle,1,0.1544,34.8148,44.3626,34.4378,8.5954,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Valle,HN17,Valle,1,0.0440,10.5730,41.6612,27.1984,1.7192,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Yoro,HN18,Yoro,1,0.1114,23.0191,48.3728,22.8785,9.1335,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Yoro,HN18,Yoro,1,0.1312,27.0528,48.4844,26.1020,10.4378,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HND,Y,Y,Yoro,HN18,Yoro,1,0.0652,14.2688,45.7192,17.3505,4.5744,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,,,,0,0.2369,48.4187,48.9321,20.1404,23.4702,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,,,,0,0.1920,39.9105,48.1139,22.0116,17.8040,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Aire Métropolitaine,,,1,0.1510,32.0424,47.1352,19.7127,12.6447,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Aire Métropolitaine,,,1,0.1299,26.8602,48.3785,18.6037,11.9902,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Artibonite,HT05,Artibonite,1,0.2974,59.1353,50.2837,20.6319,32.8997,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Artibonite,HT05,Artibonite,1,0.2455,50.0527,49.0397,19.7274,23.6026,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Centre,HT06,Centre,1,0.3689,72.4828,50.8937,16.9756,41.3280,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Centre,HT06,Centre,1,0.2825,56.0700,50.3870,22.2048,30.0304,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Grande Anse,HT08,Grande'Anse,1,0.3739,72.7059,51.4197,16.0559,45.2695,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Grande Anse,HT08,Grande'Anse,1,0.2836,58.5342,48.4465,27.2294,28.1439,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nippes,HT10,Nippes,1,0.2513,53.0739,47.3432,23.3253,22.7415,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nippes,HT10,Nippes,1,0.1782,40.1952,44.3289,26.7900,15.2156,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nord,HT03,North,1,0.2388,49.1668,48.5603,18.3830,22.7371,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nord,HT03,North,1,0.1850,39.2564,47.1328,24.0988,15.4437,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nord-Est,HT04,North-East,1,0.3013,59.6831,50.4874,22.2592,31.3715,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nord-Est,HT04,North-East,1,0.1908,40.5844,47.0181,26.3568,15.6883,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nord-Ouest,HT04,North-East,1,0.2941,60.5458,48.5805,23.5281,29.0830,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Nord-Ouest,HT04,North-East,1,0.2201,48.2138,45.6426,28.7095,18.9764,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Rest-Ouest,,,1,0.2303,45.7092,50.3735,20.8918,23.0024,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +HTI,Y,Y,Sud,,,1,0.2407,49.5484,48.5790,24.0883,22.4980,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Sud,,,1,0.2161,44.4261,48.6338,24.2562,20.7996,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Sud-Est,HT02,South-East,1,0.2957,61.8821,47.7880,20.1317,27.6518,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +HTI,Y,Y,Sud-Est,HT02,South-East,1,0.2159,46.5098,46.4252,26.3474,17.3241,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,,,,0,0.0277,6.8729,40.2669,8.9531,1.1252,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,,,,0,0.0139,3.5949,38.6765,4.6317,0.4336,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Aceh,ID11,Aceh,1,0.0265,6.6698,39.7566,8.1196,0.8949,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Aceh,ID11,Aceh,1,0.0117,3.0132,38.7363,4.8917,0.4121,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Bali,ID51,Bali,1,0.0224,5.9525,37.6396,5.3315,0.3652,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Bali,ID51,Bali,1,0.0079,2.1907,35.9706,3.9237,0.0000,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Bangka Belitung,ID19,Kepulauan Bangka Belitung,1,0.0180,4.7936,37.4467,7.0974,0.2668,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Bangka Belitung,ID19,Kepulauan Bangka Belitung,1,0.0132,3.5263,37.3553,3.7745,0.3053,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Banten,ID36,Banten,1,0.0239,5.9572,40.1867,6.4882,0.8198,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Banten,ID36,Banten,1,0.0152,3.9133,38.8333,4.0255,0.6071,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Bengkulu,ID17,Bengkulu,1,0.0285,6.7997,41.8629,10.9089,1.2306,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Bengkulu,ID17,Bengkulu,1,0.0078,2.1643,36.2192,3.9179,0.2330,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Central Java,,,1,0.0197,5.2833,37.2803,9.1777,0.1515,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Central Java,,,1,0.0100,2.7524,36.1997,4.1860,0.1109,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Central Kalimantan,,,1,0.0424,10.2030,41.5743,13.0070,1.8808,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Central Kalimantan,,,1,0.0172,4.6770,36.7297,6.1744,0.0000,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Central Sulawesi,,,1,0.0702,15.3869,45.6519,15.2024,6.1462,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Central Sulawesi,,,1,0.0250,6.6257,37.7092,7.5909,0.4512,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,East Java,,,1,0.0208,5.3222,39.0285,8.9508,0.3725,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,East Java,,,1,0.0107,2.8963,36.8211,4.5710,0.1045,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,East Kalimantan,,,1,0.0124,3.0493,40.5128,5.3016,0.4976,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,East Kalimantan,,,1,0.0101,2.6822,37.7623,2.0113,0.2553,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,East Nusa Tenggara,,,1,0.1149,26.8738,42.7545,27.9408,8.1847,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,East Nusa Tenggara,,,1,0.0656,16.1152,40.6907,21.9450,3.1243,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Gorontalo,ID75,Gorontalo,1,0.0659,15.2581,43.1858,17.8958,4.5599,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Gorontalo,ID75,Gorontalo,1,0.0352,8.8762,39.6198,7.6879,1.3683,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Jakarta,ID31,Dki Jakarta,1,0.0065,1.7539,36.9547,1.2340,0.1784,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Jakarta,ID31,Dki Jakarta,1,0.0052,1.4949,34.9377,0.5250,0.1249,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Jambi,ID15,Jambi,1,0.0237,6.1139,38.8365,9.2261,0.7831,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Jambi,ID15,Jambi,1,0.0067,1.8133,36.7540,3.4140,0.0000,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Lampung,ID18,Lampung,1,0.0256,6.5895,38.8304,11.9108,0.7816,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Lampung,ID18,Lampung,1,0.0127,3.3895,37.3604,5.3526,0.2017,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Maluku,ID81,Maluku,1,0.0482,11.5464,41.7075,19.1698,2.5272,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Maluku,ID81,Maluku,1,0.0210,5.3608,39.2290,10.0551,0.5645,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,North Kalimantan,,,1,0.0242,6.1934,39.0937,3.1573,0.8211,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IDN,N,N,North Maluku,,,1,0.0539,13.2121,40.7838,14.8773,2.6079,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,North Maluku,,,1,0.0334,7.7450,43.1689,12.6412,1.9923,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,North Sulawesi,,,1,0.0230,5.7762,39.9033,11.5875,0.8411,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,North Sulawesi,,,1,0.0079,2.0666,38.1217,3.0691,0.1979,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,North Sumatera,,,1,0.0237,5.8601,40.5120,9.3337,1.2614,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,North Sumatera,,,1,0.0207,4.9455,41.8635,4.8628,1.5592,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Papua,ID94,Papua,1,0.2015,42.1760,47.7742,13.4418,21.3611,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Papua,ID94,Papua,1,0.0831,17.9330,46.3597,16.3154,5.8416,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Riau,ID14,Riau,1,0.0156,3.8987,39.9285,6.1224,0.6966,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Riau,ID14,Riau,1,0.0089,2.3096,38.5252,2.7303,0.3265,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Riau Islands,,,1,0.0127,3.0411,41.8162,4.6872,0.7310,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Riau Islands,,,1,0.0051,1.4117,36.0050,1.0785,0.0000,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,South Kalimantan,,,1,0.0421,10.2353,41.1072,11.0546,1.9050,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,South Kalimantan,,,1,0.0185,4.9236,37.6487,5.3832,0.3581,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,South Sulawesi,,,1,0.0279,7.0692,39.4971,8.3043,0.9521,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,South Sulawesi,,,1,0.0109,2.8847,37.7973,4.9210,0.1036,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,South Sumatera,,,1,0.0194,4.7146,41.2292,8.2179,0.9357,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,South Sumatera,,,1,0.0150,3.7025,40.5426,4.6619,0.6744,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Southeast Sulawesi,,,1,0.0581,13.5196,43.0053,15.2007,3.2456,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Southeast Sulawesi,,,1,0.0208,5.1750,40.0991,5.2259,0.9284,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Java,,,1,0.0190,5.1336,36.9550,6.2420,0.1086,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Java,,,1,0.0088,2.3801,36.9360,3.0186,0.1284,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Kalimantan,,,1,0.0500,12.0672,41.4033,13.0327,2.4682,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Kalimantan,,,1,0.0207,5.2428,39.4560,7.6854,0.5867,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Nusa Tenggara,,,1,0.0403,9.9635,40.4040,13.7566,1.9983,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Nusa Tenggara,,,1,0.0167,4.5304,36.9677,4.3278,0.3774,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Papua,,,1,0.0663,14.0715,47.1296,13.9595,4.8199,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Papua,,,1,0.0413,9.5786,43.1426,3.7199,2.8617,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Sulawesi,,,1,0.0994,22.0548,45.0698,21.8736,6.8969,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Sulawesi,,,1,0.0280,7.1087,39.3527,10.6633,0.7271,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Sumatera,,,1,0.0264,7.0002,37.6622,7.7019,0.7028,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,West Sumatera,,,1,0.0120,3.3190,36.0597,4.8741,0.3201,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Yogyakarta,ID34,Daerah Istimewa Yogyakarta,1,0.0098,2.6995,36.2942,7.3847,0.1228,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IDN,N,N,Yogyakarta,ID34,Daerah Istimewa Yogyakarta,1,0.0081,2.2926,35.3957,1.3643,0.0000,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,,,,0,0.2827,55.0742,51.3271,17.0205,27.7771,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,,,,0,0.1217,27.6781,43.9622,18.9196,8.7151,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,,,,0,0.0688,16.3928,41.9761,18.6869,4.2454,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Andaman & Nicobar Islands,,,1,0.0142,3.6708,38.6353,10.1618,0.4575,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IND,N,N,Andhra Pradesh,,,1,0.2356,49.8836,47.2247,18.6133,21.5491,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Andhra Pradesh,,,1,0.0631,15.4135,40.9613,19.2037,3.1922,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Andhra Pradesh,,,1,0.0278,7.1138,39.1028,16.0771,0.9091,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Arunachal Pradesh,,,1,0.3128,59.9419,52.1920,15.6431,32.0036,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Arunachal Pradesh,,,1,0.1076,24.3453,44.1993,20.3356,7.5592,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Arunachal Pradesh,,,1,0.0541,13.2061,40.9441,18.4609,2.7448,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Assam,,,1,0.3171,61.6816,51.4070,17.4676,32.4914,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Assam,,,1,0.1615,36.1840,44.6449,20.3578,12.1818,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Assam,,,1,0.0899,21.4105,41.9974,21.6924,5.4333,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Bihar,,,1,0.4484,77.3747,57.9579,11.4109,50.7506,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Bihar,,,1,0.2475,52.4125,47.2213,19.2104,22.3667,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Bihar,,,1,0.1544,34.6609,44.5458,19.9787,13.1912,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Chandigarh,,,1,0.0178,3.9426,45.1799,6.9400,1.1830,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IND,N,N,Chhattisgarh,,,1,0.3552,69.9447,50.7899,13.2869,34.9563,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Chhattisgarh,,,1,0.1524,36.7632,41.4573,19.8436,9.0220,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Chhattisgarh,,,1,0.0732,17.8848,40.9144,24.0007,3.7308,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Dadra & Nagar Haveli and Daman & Diu,,,1,0.0559,14.2685,39.1730,19.3786,2.4120,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IND,N,N,Delhi,,,1,0.0571,12.6317,45.1939,14.4465,4.1882,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Delhi,,,1,0.0167,3.9817,42.0583,11.8731,0.9001,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Delhi,,,1,0.0134,3.3543,39.9122,7.1893,0.4890,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Goa,,,1,0.0875,20.5985,42.4944,17.8405,4.9981,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Goa,,,1,0.0203,5.4594,37.1865,9.3327,0.4245,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Goa,,,1,0.0053,1.3938,38.2264,6.3891,0.1361,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Gujarat,,,1,0.1851,38.2998,48.3205,18.4434,16.4761,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Gujarat,,,1,0.0907,21.4871,42.2344,18.2591,5.4413,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Gujarat,,,1,0.0590,14.4022,40.9834,17.7388,3.0165,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Haryana,,,1,0.1863,39.0433,47.7070,20.9544,16.6099,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Haryana,,,1,0.0452,10.7034,42.2607,19.0650,2.5923,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Haryana,,,1,0.0298,7.1746,41.5452,17.9088,1.5933,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Himachal Pradesh,,,1,0.1287,30.9322,41.5952,27.4674,6.2354,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Himachal Pradesh,,,1,0.0304,8.1221,37.3896,21.1457,0.5614,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Himachal Pradesh,,,1,0.0204,5.3103,38.3324,17.4194,0.6345,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Jammu & Kashmir,,,1,0.1933,41.7069,46.3355,20.5860,15.4783,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Jammu & Kashmir,,,1,0.0635,15.2273,41.7246,17.4129,3.3359,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Jammu & Kashmir,,,1,0.0249,6.2595,39.7527,11.1951,1.0051,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Jharkhand,,,1,0.4291,74.8587,57.3195,10.8042,50.1225,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Jharkhand,,,1,0.2080,46.5002,44.7287,20.4294,15.4296,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Jharkhand,,,1,0.1318,30.6030,43.0699,22.5427,9.1473,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Karnataka,,,1,0.2278,48.6952,46.7901,19.9324,18.9050,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Karnataka,,,1,0.0669,16.8236,39.7623,18.2573,3.1592,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Karnataka,,,1,0.0333,8.4979,39.2263,17.9722,1.2819,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Kerala,,,1,0.0528,13.3014,39.7314,24.1508,2.0231,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Kerala,,,1,0.0040,1.0744,37.2712,10.0219,0.0697,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Kerala,,,1,0.0031,0.8575,35.7243,8.6407,0.0303,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Ladakh,,,1,0.0244,6.5118,37.4463,13.4617,0.8008,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IND,N,N,Lakshadweep,,,1,0.0033,0.8826,36.9724,14.3035,0.0000,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IND,N,N,Madhya Pradesh,,,1,0.3655,68.6530,53.2444,14.4577,38.8236,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Madhya Pradesh,,,1,0.1813,40.9760,44.2560,20.4132,13.0344,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Madhya Pradesh,,,1,0.0994,23.9625,41.4887,22.1937,5.4665,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Maharashtra,,,1,0.1861,40.1275,46.3891,21.0493,13.7837,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Maharashtra,,,1,0.0707,17.1130,41.2966,20.3564,3.4594,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Maharashtra,,,1,0.0357,8.9881,39.7104,16.9318,1.3985,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Manipur,,,1,0.2023,43.8821,46.0944,25.0252,15.6833,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Manipur,,,1,0.0779,19.2089,40.5517,22.2305,3.3373,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Manipur,,,1,0.0383,9.6714,39.6491,17.4012,1.3776,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Meghalaya,,,1,0.3400,61.4013,55.3671,13.4371,39.9671,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Meghalaya,,,1,0.1451,32.6080,44.5076,23.4490,11.1995,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Meghalaya,,,1,0.1230,27.0191,45.5298,20.0199,10.3066,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Mizoram,,,1,0.1380,30.5544,45.1668,19.6227,11.3511,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Mizoram,,,1,0.0440,9.7323,45.2273,12.3670,3.4015,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Mizoram,,,1,0.0246,5.7504,42.7607,9.1095,1.7597,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Nagaland,,,1,0.2944,57.0030,51.6416,18.1679,30.4097,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Nagaland,,,1,0.0980,23.4818,41.7350,17.5262,6.2457,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Nagaland,,,1,0.0660,17.0562,38.7060,15.4829,2.8929,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Odisha,,,1,0.3359,64.1871,52.3309,15.7417,34.1646,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Odisha,,,1,0.1554,35.8380,43.3564,19.0567,10.6222,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Odisha,,,1,0.0863,20.8000,41.5128,19.4307,5.1679,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Puducherry,,,1,0.0052,1.4224,36.6496,6.7816,0.0423,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IND,N,N,Punjab,,,1,0.1083,24.0456,45.0275,19.4080,8.9322,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Punjab,,,1,0.0249,6.0390,41.2986,13.0096,1.4172,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Punjab,,,1,0.0188,4.7077,39.9954,12.2023,0.7273,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Rajasthan,,,1,0.3312,62.0290,53.3983,16.1109,35.2103,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Rajasthan,,,1,0.1405,31.0514,45.2544,22.2016,10.9355,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Rajasthan,,,1,0.0679,16.5691,41.0065,22.7726,3.6461,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Sikkim,,,1,0.1771,37.4824,47.2551,15.8782,15.7152,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Sikkim,,,1,0.0184,4.8313,38.1273,12.2008,0.5061,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Sikkim,,,1,0.0140,3.6746,38.1001,9.6617,0.4811,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Tamil Nadu,,,1,0.1562,37.2884,41.8971,21.8691,8.5019,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Tamil Nadu,,,1,0.0268,7.1361,37.4933,16.4620,0.5530,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Tamil Nadu,,,1,0.0142,3.8376,36.9201,12.6557,0.2207,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Telangana,,,1,0.0265,6.7780,39.1221,16.9551,0.8137,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +IND,N,N,Tripura,,,1,0.2655,54.5726,48.6483,19.0309,23.7059,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Tripura,,,1,0.0865,20.2643,42.6853,20.4695,5.2868,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Tripura,,,1,0.0635,15.7000,40.4290,20.6966,2.8284,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Uttar Pradesh,,,1,0.3611,68.7876,52.4888,14.5043,36.4787,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Uttar Pradesh,,,1,0.1821,40.6897,44.7480,19.4765,14.0344,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Uttar Pradesh,,,1,0.0983,22.9387,42.8330,21.4781,6.5851,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Uttarakhand,,,1,0.1818,39.2942,46.2790,21.0565,15.0077,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Uttarakhand,,,1,0.0719,17.2125,41.7477,19.4276,3.9146,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,Uttarakhand,,,1,0.0391,9.8110,39.8766,16.1711,1.5089,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,West Bengal,,,1,0.3019,57.9645,52.0805,16.3538,31.0786,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,West Bengal,,,1,0.1097,26.1638,41.9144,19.8294,7.0784,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IND,N,N,West Bengal,,,1,0.0607,15.2707,39.7277,20.2134,2.8258,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,,,,0,0.0524,13.2670,39.5229,7.9119,2.5337,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,,,,0,0.0327,8.6354,37.8607,5.2437,1.3125,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Anbar,IQG01,Al-Anbar,1,0.0708,18.9303,37.3918,4.4270,2.7481,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Anbar,IQG01,Al-Anbar,1,0.0360,9.7981,36.7404,4.6529,1.3067,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Muthanna,IQG03,Al-Muthanna,1,0.0980,24.6238,39.7947,10.9695,5.4422,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Muthanna,IQG03,Al-Muthanna,1,0.0511,13.7898,37.0295,3.2529,1.7179,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Najaf,IQG04,Al-Najaf,1,0.0538,13.4578,39.9568,7.5824,3.2184,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Najaf,IQG04,Al-Najaf,1,0.0486,10.7033,45.3989,9.7831,4.3915,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Qadissiyah,IQG05,Al-Qadissiya,1,0.0952,21.2097,44.8960,12.8526,7.6313,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Al-Qadissiyah,IQG05,Al-Qadissiya,1,0.0301,7.7342,38.9219,9.2278,1.1626,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Babil,IQG07,Babil,1,0.0484,11.5525,41.8604,9.2442,3.1895,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Babil,IQG07,Babil,1,0.0355,8.8073,40.2867,8.0297,1.6775,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Baghdad,IQG08,Baghdad,1,0.0349,9.6684,36.1100,3.7740,0.9515,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Baghdad,IQG08,Baghdad,1,0.0269,7.2349,37.1186,3.9980,1.1355,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Basra,IQG02,Al-Basrah,1,0.0494,13.0886,37.7461,6.3088,1.9481,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Basra,IQG02,Al-Basrah,1,0.0536,13.8241,38.7795,8.7917,2.2510,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Diyala,IQG10,Diyala,1,0.0501,12.5840,39.7918,12.8996,2.3149,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Diyala,IQG10,Diyala,1,0.0139,3.9626,35.1796,3.6426,0.2052,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Dohuk,IQG09,Duhok,1,0.0367,9.5858,38.3074,10.2784,1.2327,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Dohuk,IQG09,Duhok,1,0.0197,5.1476,38.3529,2.9464,0.9792,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Erbil,IQG11,Erbil,1,0.0281,7.4223,37.8390,8.9118,0.6565,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Erbil,IQG11,Erbil,1,0.0123,3.4577,35.5655,5.3177,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Karbala,IQG12,Kerbala,1,0.0661,15.1793,43.5584,7.1255,5.4190,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Karbala,IQG12,Kerbala,1,0.0380,9.9769,38.1349,4.6973,1.7170,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Kirkuk,IQG13,Kirkuk,1,0.0237,6.4694,36.6118,7.2076,0.6467,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Kirkuk,IQG13,Kirkuk,1,0.0217,5.9713,36.3330,1.9017,0.4421,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Missan,IQG14,Maysan,1,0.1076,24.9805,43.0611,8.4804,7.7588,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Missan,IQG14,Maysan,1,0.0660,16.9804,38.8599,10.5730,3.0440,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Ninewa,IQG15,Ninewa,1,0.0630,16.0398,39.2589,7.6115,2.8894,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Ninewa,IQG15,Ninewa,1,0.0422,11.6085,36.3412,3.0100,1.5372,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Salahaddin,IQG16,Salah Al-Din,1,0.0715,17.7379,40.2832,14.9993,2.8513,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Salahaddin,IQG16,Salah Al-Din,1,0.0189,5.2033,36.3147,2.5813,0.2694,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Suleimaniya,IQG06,Al-Sulaymaniyah,1,0.0137,3.8112,36.0703,3.5763,0.2090,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Suleimaniya,IQG06,Al-Sulaymaniyah,1,0.0083,2.2659,36.5868,2.6916,0.2781,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Thi-Qar,IQG17,Thi Qar,1,0.0710,17.6901,40.1276,10.7422,3.6553,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Thi-Qar,IQG17,Thi Qar,1,0.0424,11.6635,36.3949,3.4802,1.2471,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Wasit,IQG18,Wassit,1,0.0856,20.6462,41.4407,16.8389,4.2335,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +IRQ,N,Y,Wasit,IQG18,Wassit,1,0.0339,8.7705,38.6881,11.7675,1.4947,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,,,,0,0.0214,5.3087,40.3972,7.3827,1.2447,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,,,,0,0.0182,4.6869,38.7310,6.4129,0.8117,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,,,,0,0.0108,2.7757,38.9467,5.0026,0.2323,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Clarendon,JM01,Clarendon,1,0.0089,2.4845,35.9124,4.9373,0.2395,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Hanover,JM02,Hanover,1,0.0039,1.0816,36.1707,10.8438,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Kingston,JM03,Kingston,1,0.0092,2.2094,41.7950,6.2165,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Kingston Metropolitan Area,,,1,0.0210,4.9179,42.7502,2.9879,1.8318,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,Kingston Metropolitan Area,,,1,0.0113,2.9133,38.6787,3.4704,0.5303,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,Manchester,JM04,Manchester,1,0.0080,2.2203,35.9683,3.5303,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Other Towns,,,1,0.0070,1.9103,36.4272,6.2914,0.0000,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,Other Towns,,,1,0.0182,4.5381,40.2043,3.4783,1.1572,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,Portland,JM05,Portland,1,0.0171,4.5878,37.3019,9.0880,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Rural Areas,,,1,0.0291,7.3369,39.7242,11.2814,1.4322,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,Rural Areas,,,1,0.0227,5.9413,38.2218,9.7513,0.8381,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JAM,N,N,St. Andrew,JM06,Saint Andrew,1,0.0069,1.7939,38.4957,1.5451,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,St. Ann,JM07,Saint Ann,1,0.0187,4.8216,38.7404,6.2739,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,St. Catherine,JM08,Saint Catherine,1,0.0121,2.9575,40.9878,4.1065,0.8415,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,St. Elizabeth,JM09,Saint Elizabeth,1,0.0067,1.8365,36.4660,8.1727,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,St. James,JM10,Saint James,1,0.0106,2.8642,37.1173,4.9094,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,St. Mary,JM11,Saint Mary,1,0.0236,5.7514,41.0927,9.8105,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,St. Thomas,JM12,Saint Thomas,1,0.0142,3.5385,40.2172,4.3072,0.7116,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Trelawny,JM13,Trelawny,1,0.0178,4.1740,42.7337,9.1536,0.8635,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JAM,N,N,Westmoreland,JM14,Westmoreland,1,0.0088,2.3398,37.5018,8.0125,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +JOR,N,Y,,,,0,0.0018,0.5226,33.7977,0.8908,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,,,,0,0.0015,0.4312,35.3464,0.6615,0.0014,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Aljoun,,,1,0.0006,0.1702,33.3333,0.6335,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Aljoun,,,1,0.0016,0.4508,35.5746,0.2170,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Amman,,,1,0.0026,0.7695,33.3333,0.3167,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Amman,,,1,0.0011,0.3024,35.3974,0.1760,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Aqaba,,,1,0.0009,0.2743,33.3333,0.2819,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Aqaba,,,1,0.0002,0.0606,38.8889,0.1271,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Balqa,,,1,0.0000,0.0000,,1.9216,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Balqa,,,1,0.0021,0.5422,39.1302,1.5965,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Irbid,,,1,0.0006,0.1715,33.3333,1.2839,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Irbid,,,1,0.0018,0.4980,35.5748,0.7149,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Jerash,,,1,0.0006,0.1709,33.3333,2.3731,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Jerash,,,1,0.0020,0.5943,34.3795,1.0511,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Karak,,,1,0.0002,0.0578,33.3333,0.7388,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Karak,,,1,0.0004,0.1232,33.3333,0.8798,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Ma'an,,,1,0.0054,1.5956,34.0341,2.3306,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Ma'an,,,1,0.0061,1.8218,33.6300,2.1032,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Madaba,,,1,0.0022,0.6467,33.3333,0.2199,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Madaba,,,1,0.0024,0.6842,35.5817,0.5140,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Mafraq,,,1,0.0033,0.9230,36.2004,2.0845,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Mafraq,,,1,0.0031,0.8989,34.7511,2.2439,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Tafilah,,,1,0.0006,0.1812,33.3333,0.0445,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Tafilah,,,1,0.0005,0.1634,33.3333,0.3112,0.0000,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Zarqa,,,1,0.0023,0.6608,34.1438,0.7529,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +JOR,N,Y,Zarqa,,,1,0.0014,0.4064,34.6328,0.8572,0.0100,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,,,,0,0.0032,0.8896,36.2044,5.4154,0.0288,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,,,,0,0.0016,0.4622,35.5121,1.7977,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Akmola,KAZ002,Akmola Region,1,0.0006,0.1536,36.2253,3.5893,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Akmola,KAZ002,Akmola Region,1,0.0003,0.0883,33.3333,0.7665,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Aktobe,KAZ003,Aktobe Region,1,0.0016,0.4616,34.8048,7.1385,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Aktobe,KAZ003,Aktobe Region,1,0.0026,0.7854,33.3333,0.7897,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Almaty City,,,1,0.0000,0.0000,,0.8172,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Almaty City,,,1,0.0006,0.1717,33.3333,0.2330,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Almaty Oblast,,,1,0.0014,0.3683,38.8889,5.1530,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Almaty Oblast,,,1,0.0019,0.5734,33.3333,1.5085,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Astana City,,,1,0.0000,0.0000,,3.0361,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Astana City,,,1,0.0000,0.0000,,1.4366,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Atyrau,KAZ007,Atyrau Region,1,0.0063,1.8030,34.6698,4.4832,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Atyrau,KAZ007,Atyrau Region,1,0.0039,1.1791,33.3333,0.1183,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,East Kazakhstan,KAZ008,East Kazakhstan Region,1,0.0053,1.5392,34.7296,5.9932,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,East Kazakhstan,KAZ008,East Kazakhstan Region,1,0.0000,0.0000,,1.0538,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Karaganda,KAZ011,Karaganda Region,1,0.0054,1.4719,36.4409,4.4110,0.2082,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Karaganda,KAZ011,Karaganda Region,1,0.0000,0.0000,,1.6733,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Kostanai,KAZ006,Astana,1,0.0017,0.4072,40.9179,3.4475,0.1853,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Kostanai,KAZ006,Astana,1,0.0002,0.0495,33.3333,3.2177,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Kyzylorda,KAZ013,Kyzylorda Region,1,0.0111,2.9638,37.3670,9.8968,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Kyzylorda,KAZ013,Kyzylorda Region,1,0.0037,0.9548,38.8889,11.0526,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Mangistau,,,1,0.0014,0.4146,33.3333,3.3397,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Mangistau,,,1,0.0009,0.2398,38.8889,0.8325,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,North Kazakhstan,KAZ015,North Kazakhstan Region,1,0.0011,0.2838,37.8394,5.1265,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,North Kazakhstan,KAZ015,North Kazakhstan Region,1,0.0002,0.0597,33.3333,1.7776,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Pavlodar,KAZ016,Pavlodar Region,1,0.0000,0.0000,,1.1649,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Pavlodar,KAZ016,Pavlodar Region,1,0.0013,0.3741,35.3930,0.7669,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,South Kasakhstan,,,1,0.0044,1.1784,36.9591,1.8896,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KAZ,N,N,South Kazkahstan,,,1,0.0039,1.1178,35.2173,8.1129,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,South Kazkahstan,,,1,0.0044,1.1784,36.9591,1.8896,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,West Kazakhstan,KAZ020,West Kazakhstan Region,1,0.0000,0.0000,,3.4593,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KAZ,N,N,Western Kazkahstan,,,1,0.0052,1.4276,36.3242,8.1635,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Western Kazkahstan,,,1,0.0007,0.2003,33.3333,3.2590,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Zhambyl,,,1,0.0055,1.4651,37.2222,8.0295,0.0000,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KAZ,N,N,Zhambyl,,,1,0.0018,0.5314,33.3333,1.8216,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,,,,0,0.2367,50.1042,47.2506,26.9656,19.6217,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,,,,0,0.1619,35.3877,45.7522,32.0617,11.9538,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,,,,0,0.1030,23.0267,44.7292,26.8642,6.8371,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Baringo,KE030,Baringo,1,0.2159,46.8917,46.0451,25.6884,17.5521,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Bomet,KE036,Bomet,1,0.0957,24.3793,39.2707,34.1549,1.7629,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Bungoma,KE039,Bungoma,1,0.1153,28.5666,40.3516,39.9742,3.6231,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Busia,KE040,Busia,1,0.1221,29.2173,41.7774,39.6242,5.2813,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Central,,,1,0.1355,32.1687,42.1185,34.8182,6.9012,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Central,,,1,0.0657,16.2478,40.4452,31.8700,2.0445,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Central,,,1,0.0267,6.8804,38.8393,18.6844,0.6551,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Coast,KE045,Kisii,1,0.2553,50.6135,50.4413,20.5210,25.3040,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Coast,KE045,Kisii,1,0.1998,41.4617,48.1789,25.9343,18.5036,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Coast,KE045,Kisii,1,0.1502,32.8564,45.7024,22.6503,11.1570,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Eastern,,,1,0.2712,58.2538,46.5485,25.3745,23.5294,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Eastern,,,1,0.1646,37.1467,44.3125,34.3208,11.6519,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Eastern,,,1,0.1020,24.1317,42.2555,29.3498,5.7494,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Elgeyo-Marakwet,KE028,Elgeyo-Marakwet,1,0.1386,34.2359,40.4762,34.2899,5.6702,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Embu,KE014,Embu,1,0.0761,18.7291,40.6388,27.1332,3.8943,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Garissa,KE007,Garissa,1,0.2910,55.2501,52.6725,24.4240,30.3679,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Homa Bay,KE043,Homa Bay,1,0.1080,26.6254,40.5544,43.3760,3.3817,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Isiolo,KE011,Isiolo,1,0.1962,39.4936,49.6851,20.7583,20.3589,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kajiado,KE034,Kajiado,1,0.1108,22.5120,49.2340,15.4016,10.6798,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kakamega,KE037,Kakamega,1,0.0960,23.9991,40.0210,39.9266,2.8976,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kericho,KE035,Kericho,1,0.1099,26.4952,41.4969,32.0097,6.1348,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kiambu,KE022,Kiambu,1,0.0222,5.8769,37.7668,13.6873,0.2213,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kilifi,KE003,Kilifi,1,0.2026,46.3581,43.7119,23.8772,13.1869,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kirinyaga,KE020,Kirinyaga,1,0.0406,10.1199,40.1022,18.2136,1.8937,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kisii,KE045,Kisii,1,0.1085,26.7020,40.6424,39.1992,6.1322,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kisumu,KE042,Kisumu,1,0.0654,16.5818,39.4295,33.0455,1.8480,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kitui,KE015,Kitui,1,0.1510,37.0811,40.7318,32.2673,8.0134,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Kwale,KE002,Kwale,1,0.2105,44.5123,47.2996,27.2794,17.2902,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Laikipia,KE031,Laikipia,1,0.0945,21.9261,43.1170,30.0423,5.1594,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Lamu,KE005,Lamu,1,0.1390,30.2600,45.9254,31.4410,9.9741,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Machakos,KE016,Machakos,1,0.0723,18.7920,38.4708,24.6425,1.4464,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Makueni,KE017,Makueni,1,0.1019,25.5705,39.8476,33.3158,2.3637,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Mandera,KE009,Mandera,1,0.4612,81.3359,56.7042,11.3250,55.9011,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Marsabit,KE010,Marsabit,1,0.3466,63.5606,54.5357,13.7008,39.9074,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Meru,KE012,Meru,1,0.1234,29.1670,42.3162,28.4624,6.4093,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Migori,KE044,Migori,1,0.1393,33.4521,41.6524,39.4944,6.2976,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Mombasa,KE001,Mombasa,1,0.0518,12.8866,40.2193,16.8930,2.2801,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Murang'a,KE021,Murang'a,1,0.0453,11.3790,39.7788,25.6237,1.8417,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Nairobi,KE047,Nairobi,1,0.0240,6.2000,38.7900,13.8786,0.9512,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Nairobi,KE047,Nairobi,1,0.0265,6.7911,39.0112,11.8988,1.0546,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Nairobi,KE047,Nairobi,1,0.0089,2.3004,38.5818,7.4589,0.2227,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Nakuru,KE032,Nakuru,1,0.0727,17.7324,40.9854,22.7041,4.1370,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Nandi,KE029,Nandi,1,0.1076,25.7708,41.7678,32.3563,5.3463,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Narok,KE033,Narok,1,0.1934,43.3427,44.6290,33.1802,11.6110,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,North Eastern,,,1,0.5195,85.4307,60.8116,9.9998,68.6837,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,North Eastern,,,1,0.4637,80.7496,57.4249,11.3973,58.2714,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,North Eastern,,,1,0.3598,66.3250,54.2480,19.1877,39.4650,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Nyamira,KE046,Nyamira,1,0.0985,24.8200,39.7018,38.1666,4.5827,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Nyandarua,KE018,Nyandarua,1,0.0570,14.8797,38.3287,33.8142,0.4096,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Nyanza,KE029,Nandi,1,0.2243,50.2947,44.6055,33.0754,15.6110,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Nyanza,KE029,Nandi,1,0.1548,36.4765,42.4450,39.9790,8.7762,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Nyanza,KE029,Nandi,1,0.0947,23.4952,40.3024,40.2658,3.6401,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Nyeri,KE019,Nyeri,1,0.0400,10.3172,38.7244,16.1988,1.3266,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Rift Valley,,,1,0.2710,55.8805,48.4962,25.7260,23.0012,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Rift Valley,,,1,0.1972,42.0862,46.8578,31.7988,15.4230,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Rift Valley,,,1,0.1371,29.0193,47.2360,26.1537,10.9257,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Samburu,KE025,Samburu,1,0.4172,70.1600,59.4621,13.2709,53.6549,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Siaya,KE041,Siaya,1,0.1032,25.2612,40.8432,41.0049,2.7860,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Taita Taveta,KE006,Taita Taveta,1,0.0793,19.2683,41.1796,25.3401,2.7401,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Tana River,KE004,Tana River,1,0.3780,67.2861,56.1740,18.3876,44.4231,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Tharaka-Nithi,KE013,Tharaka-Nithi,1,0.1052,25.6435,41.0118,30.5042,5.6725,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Trans Nzoia,KE026,Trans Nzoia,1,0.0894,22.5728,39.6186,29.4866,2.9086,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Turkana,KE023,Turkana,1,0.4968,79.5519,62.4479,11.1015,64.8855,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Uasin Gishu,KE027,Uasin Gishu,1,0.0642,16.0760,39.9373,23.2148,1.8783,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Vihiga,KE038,Vihiga,1,0.0794,19.5908,40.5292,36.0497,2.1217,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Wajir,KE008,Wajir,1,0.3956,73.1124,54.1107,18.1589,42.8622,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,West Pokot,KE024,West Pokot,1,0.3546,65.7864,53.9036,18.0991,37.0121,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KEN,N,Y,Western,,,1,0.2475,54.6706,45.2664,31.6940,17.7100,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Western,,,1,0.1737,39.9117,43.5149,45.4540,9.0720,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KEN,N,Y,Western,,,1,0.0946,23.4642,40.3203,40.6076,3.0172,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,,,,0,0.0357,9.3944,37.9826,15.0415,0.7095,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,,,,0,0.0124,3.3486,37.1227,10.5556,0.1327,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,,,,0,0.0040,1.0921,36.8785,7.2638,0.0439,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Batken,KG05000000000,Batken,1,0.0977,25.5359,38.2418,21.2527,2.1398,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Batken,KG05000000000,Batken,1,0.0330,9.3394,35.3459,14.0877,0.7392,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Batken,KG05000000000,Batken,1,0.0041,1.1041,36.7025,16.3993,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Bishkek,KG11000000000,Bishkek (city),1,0.0042,1.0685,39.0947,4.5113,0.0000,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Bishkek,KG11000000000,Bishkek (city),1,0.0000,0.0000,,4.1377,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Bishkek,KG11000000000,Bishkek (city),1,0.0000,0.0000,,0.7167,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Chui,KG08000000000,Chui,1,0.0147,4.0378,36.3389,12.1546,0.1959,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Chui,KG08000000000,Chui,1,0.0025,0.7190,34.7772,3.3050,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Chui,KG08000000000,Chui,1,0.0008,0.2279,33.3333,3.4473,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Issyk-Kul,KG02000000000,Issyk-Kul,1,0.0114,3.1475,36.3030,18.1167,0.1003,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Issyk-Kul,KG02000000000,Issyk-Kul,1,0.0082,2.1268,38.6735,9.1798,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Issyk-Kul,KG02000000000,Issyk-Kul,1,0.0027,0.7737,34.7615,1.5248,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Jalal-Abad,KG03000000000,Jalal-Abad,1,0.0249,6.9180,36.0152,15.4376,0.2247,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Jalal-Abad,KG03000000000,Jalal-Abad,1,0.0217,5.9796,36.2594,15.3463,0.1010,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Jalal-Abad,KG03000000000,Jalal-Abad,1,0.0048,1.2674,38.1311,13.9477,0.2643,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Naryn,KG04000000000,Naryn,1,0.0460,11.3538,40.5400,13.6856,2.1372,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Naryn,KG04000000000,Naryn,1,0.0126,3.0164,41.8426,17.2150,0.2316,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Naryn,KG04000000000,Naryn,1,0.0014,0.4327,33.3333,4.7726,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Osh,KG06000000000,Osh,1,0.0676,17.5892,38.4571,19.6623,1.4186,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Osh,KG06000000000,Osh,1,0.0145,3.7501,38.6715,12.6432,0.1437,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Osh,KG06000000000,Osh,1,0.0092,2.4500,37.3603,10.1565,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Osh City,KG21000000000,Osh (city),1,0.0009,0.2190,38.8889,1.3288,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KGZ,N,N,Talas,KG07000000000,Talas,1,0.0188,5.0811,37.0280,25.0029,0.3101,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Talas,KG07000000000,Talas,1,0.0057,1.3628,41.8245,13.1424,0.1476,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KGZ,N,N,Talas,KG07000000000,Talas,1,0.0048,1.4325,33.3333,3.9922,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,,,,0,0.2254,47.1181,47.8402,21.8084,19.4941,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,,,,0,0.1683,36.7211,45.8421,21.2798,13.1164,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,,,,0,0.0704,16.6447,42.2765,20.5211,4.0929,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Banteay Meanchay,KH01,Banteay Meanchey,1,0.2213,47.9867,46.1210,19.4238,15.9348,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Banteay Meanchay,KH01,Banteay Meanchey,1,0.1320,29.6692,44.4936,21.9547,11.6063,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Banteay Meanchay,KH01,Banteay Meanchey,1,0.0411,10.3595,39.6988,24.5106,2.0120,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Battambang,KH02,Battambang,1,0.0464,10.6628,43.4699,23.3445,2.4186,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Battambang & Pailin,,,1,0.1812,38.9340,46.5500,27.5945,14.6949,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Battambang & Pailin,,,1,0.1120,24.0798,46.5253,24.5917,9.1557,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Battambang & Pailin,,,1,0.0473,10.9213,43.2813,22.7062,2.4945,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Cham,KH03,Kampong Cham,1,0.2588,53.1995,48.6398,23.5272,22.6009,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Cham,KH03,Kampong Cham,1,0.1941,41.8214,46.4056,24.2343,14.6263,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Cham,KH03,Kampong Cham,1,0.0998,23.8592,41.8085,31.8205,5.4284,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Chhnang,KH04,Kampong Chhnang,1,0.2928,58.6578,49.9189,27.5947,27.5684,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Chhnang,KH04,Kampong Chhnang,1,0.2212,48.2543,45.8503,22.9803,16.9175,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Chhnang,KH04,Kampong Chhnang,1,0.0903,21.1889,42.6215,25.2289,6.1514,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Speu,KH05,Kampong Speu,1,0.2117,45.4713,46.5525,24.9633,18.5872,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Speu,KH05,Kampong Speu,1,0.1849,42.2906,43.7102,26.2488,13.0842,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Speu,KH05,Kampong Speu,1,0.0987,23.0217,42.8708,23.2005,6.8247,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Thom,KH06,Kampong Thom,1,0.2965,60.4470,49.0521,16.5068,31.1267,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Thom,KH06,Kampong Thom,1,0.2165,46.3047,46.7502,19.4805,16.5962,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampong Thom,KH06,Kampong Thom,1,0.0748,17.1105,43.6914,29.8427,4.5169,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampot,KH07,Kampot,1,0.0786,19.3549,40.5922,16.6071,4.9967,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Kampot & Kep,,,1,0.2366,50.1664,47.1658,23.8320,17.6725,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampot & Kep,,,1,0.1688,37.4485,45.0789,25.5503,11.0107,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kampot & Kep,,,1,0.0783,19.3452,40.4987,16.7287,4.8450,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kandal,KH08,Kandal,1,0.1902,43.1143,44.1045,19.5069,13.2688,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kandal,KH08,Kandal,1,0.1414,33.2327,42.5618,19.3256,7.6021,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kandal,KH08,Kandal,1,0.0514,12.8363,40.0768,19.6533,1.9334,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kep,KH23,Kep,1,0.0750,19.1995,39.0831,18.5533,2.5690,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Koh Kong,KH09,Koh Kong,1,0.0992,22.5578,43.9933,21.3845,9.1331,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Kratie,KH10,Kratie,1,0.3106,58.5509,53.0489,20.0021,30.4794,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kratie,KH10,Kratie,1,0.2979,58.6396,50.8010,19.3310,30.6733,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Kratie,KH10,Kratie,1,0.1104,26.0692,42.3311,16.8505,5.0597,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Mondul Kiri,KH11,Mondul Kiri,1,0.1571,34.8881,45.0174,19.3628,12.5015,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Mondul Kiri and Ratanak Kiri,,,1,0.4078,70.9021,57.5174,12.6640,46.8749,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Mondul Kiri and Ratanak Kiri,,,1,0.2899,55.8782,51.8857,16.2245,30.4635,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Mondul Kiri and Ratanak Kiri,,,1,0.2107,45.1365,46.6870,18.6917,17.7435,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Otdar Meanchey,KH22,Oddar Meanchey,1,0.2553,52.8164,48.3398,20.7012,22.0867,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Otdar Meanchey,KH22,Oddar Meanchey,1,0.2324,51.6092,45.0311,21.0925,17.8617,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Otdar Meanchey,KH22,Oddar Meanchey,1,0.1001,24.9839,40.0741,26.9486,4.2615,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Pailin,KH24,Pailin,1,0.0605,14.6398,41.3049,13.5230,3.5868,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Phnom Penh,KH12,Phnom Penh,1,0.0163,3.3707,48.4473,15.4206,1.6015,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Phnom Penh,KH12,Phnom Penh,1,0.0308,8.2825,37.2376,12.0941,0.5261,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Phnom Penh,KH12,Phnom Penh,1,0.0222,5.7513,38.5827,2.9750,0.6926,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Preah Sihanouk,KH18,Preah Sihanouk,1,0.0307,7.2387,42.4472,17.3738,2.2741,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Preah Sihanouk and Koh Kong,,,1,0.1889,36.9315,51.1476,23.9114,19.6366,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Preah Sihanouk and Koh Kong,,,1,0.0971,21.7240,44.7043,23.2790,7.9026,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Preah Sihanouk and Koh Kong,,,1,0.0568,13.0594,43.4620,18.8977,4.8803,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Preah Vihear,KH13,Preah Vihear,1,0.1252,28.7145,43.5869,24.2569,8.3977,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Preah Vihear and Stung Treng,,,1,0.3836,72.1742,53.1473,15.6326,42.5536,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Preah Vihear and Stung Treng,,,1,0.3092,64.2866,48.1021,16.5530,28.8830,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Preah Vihear and Stung Treng,,,1,0.1546,34.5813,44.7095,24.1168,11.5974,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Prey Veng,KH14,Prey Veng,1,0.2413,53.8529,44.8162,22.7887,16.7521,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Prey Veng,KH14,Prey Veng,1,0.1532,35.0182,43.7574,21.4566,10.7339,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Prey Veng,KH14,Prey Veng,1,0.0467,11.6037,40.2570,23.4127,2.1187,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Pursat,KH15,Pursat,1,0.3096,60.8996,50.8383,22.3238,30.5303,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Pursat,KH15,Pursat,1,0.2605,52.5367,49.5771,18.0679,24.8958,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Pursat,KH15,Pursat,1,0.1114,26.4384,42.1236,31.0407,6.7730,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Ratanak Kiri,KH16,Ratanak Kiri,1,0.2313,49.0613,47.1417,18.4347,19.7510,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Siem Reap,KH17,Siemreap,1,0.2690,56.2084,47.8628,18.6495,24.7178,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Siem Reap,KH17,Siemreap,1,0.2460,50.3640,48.8525,17.4701,22.5746,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Siem Reap,KH17,Siemreap,1,0.0954,21.8332,43.6807,21.1350,6.2288,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Stung Treng,KH19,Stung Treng,1,0.2008,43.7866,45.8647,23.8970,16.6179,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KHM,N,N,Svay Rieng,KH20,Svay Rieng,1,0.2483,55.8436,44.4652,21.7373,17.1068,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Svay Rieng,KH20,Svay Rieng,1,0.1343,32.9418,40.7691,28.1183,7.4087,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Svay Rieng,KH20,Svay Rieng,1,0.0390,9.3991,41.4575,17.1705,1.7622,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Takeo,KH21,Takeo,1,0.2391,50.9753,46.9071,29.1011,19.3588,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Takeo,KH21,Takeo,1,0.1153,27.5962,41.7858,25.1445,7.3224,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Takeo,KH21,Takeo,1,0.0440,10.5492,41.6695,18.3160,1.9241,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +KHM,N,N,Tboung Khmum,KH25,Tboung Khmum,1,0.1107,26.6158,41.5933,32.6422,6.3800,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KIR,N,N,,,,0,0.0802,19.8026,40.4782,30.2184,3.5327,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KIR,N,N,Central Gilbert,,,1,0.1178,29.1956,40.3628,46.0278,3.4757,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KIR,N,N,Line & Phoenix Group,,,1,0.1151,26.6071,43.2622,38.8676,7.7054,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KIR,N,N,Northern Gilbert,,,1,0.1307,32.2835,40.4697,36.8438,5.3478,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KIR,N,N,South Tarawa,,,1,0.0477,11.9965,39.7704,20.0974,2.0068,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +KIR,N,N,Southern Gilbert,,,1,0.1041,25.8391,40.2982,48.3534,4.8765,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LAO,N,N,,,,0,0.2096,40.2411,52.0745,18.7457,21.7683,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,,,,0,0.1083,23.0723,46.9537,21.1814,9.5605,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Attapeu,LA17,Attapeu,1,0.2619,52.7303,49.6692,17.9510,27.0117,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Attapeu,LA17,Attapeu,1,0.1151,25.5451,45.0675,21.1619,8.9835,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Bokeo,LA05,Bokeo,1,0.2568,47.7826,53.7366,16.8408,27.3402,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Bokeo,LA05,Bokeo,1,0.1239,26.0368,47.5872,21.2693,10.8260,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Borikhamxay,LA11,Bolikhamxai,1,0.1281,28.3677,45.1726,24.0104,8.8622,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Borikhamxay,LA11,Bolikhamxai,1,0.0476,10.5902,44.9093,23.1654,3.5132,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Champasack,LA16,Champasack,1,0.1869,39.7415,47.0190,20.3287,16.0267,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Champasack,LA16,Champasack,1,0.0849,18.7274,45.3348,26.0776,6.2474,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Houaphan,LA07,Houaphan,1,0.2286,43.9182,52.0497,19.3258,25.1504,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Houaphan,LA07,Houaphan,1,0.1239,28.1302,44.0432,25.4604,9.1723,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Khammuane,LA12,Khammouan,1,0.2414,47.0678,51.2951,17.4192,26.4899,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Khammuane,LA12,Khammouan,1,0.1135,23.5894,48.1306,22.0705,11.1879,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Luang Namtha,LA03,Louangnamtha,1,0.2087,43.5516,47.9266,22.7251,18.4266,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Luang Namtha,LA03,Louangnamtha,1,0.1058,23.5818,44.8443,25.6326,6.8361,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Luang Prabang,LA06,Louangphabang,1,0.2345,45.2200,51.8616,18.0219,24.8013,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Luang Prabang,LA06,Louangphabang,1,0.1371,30.7773,44.5511,22.4903,10.6587,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Oudomxay,LA04,Oudomxai,1,0.3056,57.5033,53.1428,16.4352,32.7817,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Oudomxay,LA04,Oudomxai,1,0.1387,29.0283,47.7873,21.2123,11.7665,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Phongsaly,LA02,Phongsaly,1,0.3476,61.7623,56.2842,15.5990,40.4900,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Phongsaly,LA02,Phongsaly,1,0.1656,35.9068,46.1271,23.3333,14.1187,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Saravane,LA14,Salavan,1,0.3910,66.6646,58.6518,15.0106,46.2640,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Saravane,LA14,Salavan,1,0.2371,48.7605,48.6208,20.2002,23.1578,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Savannakhet,LA13,Savannakhet,1,0.2732,50.6601,53.9286,19.0828,30.3959,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Savannakhet,LA13,Savannakhet,1,0.1749,34.5550,50.6012,17.4901,19.2881,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Sekong,LA15,Sekong,1,0.3186,59.3202,53.7004,16.9207,34.7128,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Sekong,LA15,Sekong,1,0.1756,36.1898,48.5132,23.1587,16.1041,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Vientiane,LA10,Vientiane,1,0.0946,21.0718,44.8902,23.1123,6.9918,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Vientiane,LA10,Vientiane,1,0.0666,15.4932,42.9902,20.6211,4.6204,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Vientiane Capital,LA01,Vientiane Capital,1,0.0187,4.4888,41.6079,16.2756,0.8425,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Vientiane Capital,LA01,Vientiane Capital,1,0.0081,1.9646,41.4526,13.1110,0.4082,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Xaignabouri,LA08,Xaignabouly,1,0.1367,29.0224,47.0911,22.9902,10.9483,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Xaignabouri,LA08,Xaignabouly,1,0.0430,10.1356,42.4201,23.2798,2.2468,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Xaisomboun ,LA18,Xaisomboon,1,0.1068,24.6182,43.3969,25.7279,7.1202,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LAO,N,N,Xiangkhouang,LA09,Xiengkhouang,1,0.2100,39.8851,52.6574,15.7640,21.5192,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LAO,N,N,Xiangkhouang,LA09,Xiengkhouang,1,0.0614,13.8360,44.3530,27.4217,4.4462,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,,,,0,0.4631,81.4477,56.8557,11.1110,54.7323,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,,,,0,0.3260,63.5241,51.3187,19.9893,33.1530,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,,,,0,0.2593,52.3231,49.5563,23.3137,24.8619,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,Bomi,LR01,Bomi,1,0.3042,65.4459,46.4746,24.6710,21.1024,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Bong,LR02,Bong,1,0.3708,71.0770,52.1723,19.2526,38.4588,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Gbarpolu,LR03,Gbarpolu,1,0.3956,76.1310,51.9594,19.6597,40.9386,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Grand Bassa,LR04,Grand Bassa,1,0.3908,71.9943,54.2878,19.0124,47.8699,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Grand Cape Mount,LR05,Grand Cape Mount,1,0.3608,73.3331,49.1943,15.8486,36.7787,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Grand Gedeh,LR06,Grand Gedeh,1,0.2973,62.0451,47.9110,24.2364,25.7058,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Grand Kru,LR07,Grand Kru,1,0.3357,66.9157,50.1602,25.0213,33.0071,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Lofa,LR08,Lofa,1,0.3180,66.2670,47.9888,25.8522,29.3778,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Margibi,LR09,Margibi,1,0.2546,50.8444,50.0755,25.0530,24.7275,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Maryland,LR10,Maryland,1,0.2824,57.0477,49.4959,27.9241,26.3344,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Montserrado,LR11,Montserrado,1,0.1223,26.4242,46.2666,24.6621,8.7579,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Nimba,LR12,Nimba,1,0.3262,65.7664,49.6035,21.0050,33.3128,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,North Central,,,1,0.5470,91.8338,59.5596,6.5885,66.9874,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,North Central,,,1,0.4258,79.1805,53.7798,15.1376,44.9662,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,North Central,,,1,0.3375,67.4482,50.0332,21.6140,33.9161,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,North Western,,,1,0.5334,90.8247,58.7331,8.7300,64.4314,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,North Western,,,1,0.4108,77.7944,52.8069,15.8625,43.6351,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,North Western,,,1,0.3453,70.7747,48.7885,20.0771,31.4179,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,River Cess,LR14,Rivercess,1,0.4152,76.0141,54.6281,20.4318,48.1247,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,River Gee,LR13,River Gee,1,0.2802,59.9026,46.7677,27.5295,23.1522,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,Sinoe,LR15,Sinoe,1,0.2666,54.4315,48.9876,36.5018,24.6731,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBR,N,N,South Central,,,1,0.3561,67.8839,52.4638,16.4054,38.4349,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Central,,,1,0.2284,47.2340,48.3479,23.9245,21.5799,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Central,,,1,0.1731,35.3137,49.0301,24.0046,15.7386,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Eastern A,,,1,0.5482,91.9862,59.5905,6.7504,69.4780,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Eastern A,,,1,0.3959,78.4877,50.4349,17.3814,41.0936,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Eastern A,,,1,0.3152,62.5391,50.3942,28.2537,31.0557,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Eastern B,,,1,0.5244,90.2730,58.0955,8.8588,66.4150,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Eastern B,,,1,0.3766,73.0799,51.5350,22.1863,38.9529,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBR,N,N,South Eastern B,,,1,0.2982,60.6301,49.1841,26.9588,27.7405,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LBY,N,Y,,,,0,0.0074,1.9985,37.1348,11.3630,0.0929,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Ajdabya,,,1,0.0129,3.4885,37.0325,6.1293,0.1503,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Ben-Ghazi,,,1,0.0031,0.8657,35.6526,6.0993,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Derna,,,1,0.0094,2.6437,35.5902,8.5442,0.2303,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,El-Jabal El-Akhdar,,,1,0.0153,4.0455,37.7750,13.2444,0.1152,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,El-Jabal El-Gharbi,,,1,0.0057,1.5005,37.7491,13.8283,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,El-Marj,,,1,0.0066,1.6811,39.4881,9.2750,0.1732,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,El-Merqab,,,1,0.0085,2.3264,36.3584,10.6880,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,El-Wahat/El-Kufra,,,1,0.0040,1.1450,35.2672,5.8825,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,El-Zawya,,,1,0.0020,0.5807,34.1052,6.1198,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Jfara,,,1,0.0027,0.7185,37.9001,12.6788,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Murzuk,,,1,0.0035,0.8749,40.3568,5.6919,0.2702,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Musrata,,,1,0.0044,1.2724,34.6104,18.7250,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Nalut,,,1,0.0033,0.9456,34.8652,17.1138,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Qasr Ben-Ghesheer,,,1,0.0048,1.3957,34.7490,12.8825,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Sebha/El-Shate,,,1,0.0067,1.8875,35.6998,8.0463,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Sert/Jafra,,,1,0.0058,1.5127,38.2807,12.7257,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Tarhuna,,,1,0.0035,0.9860,35.1768,9.3589,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Tripoli,,,1,0.0141,3.7250,37.9731,12.5468,0.2773,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Tubruk,,,1,0.0092,2.6013,35.3073,15.1195,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Wadi El-Hayat,,,1,0.0152,3.8593,39.2622,6.3989,0.7641,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LBY,N,Y,Zwara,,,1,0.0030,0.7679,39.0426,14.9240,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LCA,N,N,,,,0,0.0072,1.9211,37.4876,1.6434,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,,,,0,0.0112,2.9207,38.2943,14.3252,0.2613,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,Central,LK2,Central,1,0.0191,4.9925,38.1697,17.1569,0.5901,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,Eastern,LK5,Eastern,1,0.0143,3.7787,37.9348,16.4736,0.3596,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,North-Central,LK7,North Central,1,0.0109,2.9473,36.9246,19.6143,0.0897,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,North-Western,LK6,North Western,1,0.0102,2.6924,37.9631,16.6909,0.1068,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,Northern,LK4,Northern,1,0.0111,2.8720,38.6484,14.2852,0.1471,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,Sabaragamuwa,LK9,Sabaragamuwa,1,0.0174,4.4350,39.1240,16.3856,0.5075,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,Southern,LK3,Southern,1,0.0081,2.0949,38.7668,14.3566,0.1934,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,Uva,LK8,Uva,1,0.0215,5.4913,39.1748,18.2239,0.8426,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LKA,N,N,Western,LK1,Western,1,0.0037,0.9904,37.2453,8.2264,0.0113,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +LSO,N,N,,,,0,0.1950,42.1710,46.2372,30.1662,16.6299,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,,,,0,0.1276,28.3472,45.0165,30.5991,8.9647,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,,,,0,0.0844,19.6045,43.0304,28.5972,4.9968,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Foothills,,,1,0.2337,51.9638,44.9747,32.9820,17.9303,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Foothills,,,1,0.1702,38.7622,43.9204,40.6702,9.5697,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Foothills,,,1,0.1545,35.5099,43.5081,39.3999,11.7350,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Lowlands,,,1,0.1194,27.5157,43.3971,31.9066,7.1408,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Lowlands,,,1,0.0601,14.0708,42.7366,27.7228,3.3742,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Lowlands,,,1,0.0409,9.8451,41.5048,24.1376,1.7023,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Mountains,,,1,0.3305,67.8166,48.7386,24.8776,34.1348,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Mountains,,,1,0.2471,52.8393,46.7723,32.3540,20.6793,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Mountains,,,1,0.1848,41.6196,44.3973,33.8230,13.0541,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Senqu River Valley,,,1,0.2549,52.6981,48.3758,30.1436,27.2711,2009-01-01 00:00:00+00:00,2009-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Senqu River Valley,,,1,0.1924,42.4106,45.3611,31.7513,13.2140,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +LSO,N,N,Senqu River Valley,,,1,0.1163,27.7802,41.8491,39.8146,4.8642,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MAR,N,N,,,,0,0.0785,17.2618,45.4527,13.3066,5.8972,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MAR,N,N,,,,0,0.0334,7.8610,42.5348,10.1025,1.8910,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MAR,N,N,Béni Mellal-Khénifra,MA001,Beni Mellal-Khenifra,1,0.0702,14.2242,49.3576,10.5004,6.3548,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Casablanca- Settat,MA002,Grand Casablanca-Settat,1,0.0139,3.4795,39.8256,8.7712,0.5043,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Drâa-Tafilalet,MA003,Draa-Tafilalet,1,0.0403,9.0680,44.3940,16.2484,2.3767,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Ed Dakhla-Oued ed Dahab,,,1,0.0165,4.2801,38.5493,12.0880,0.1552,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Fès-Meknès,MA004,Fes-Meknes,1,0.0234,5.7600,40.5856,11.1372,1.1207,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Guelmim-Oued Noun,MA005,Guelmim-Oued Noun,1,0.0169,4.8041,35.1001,7.3630,0.0465,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Laâyoune-Sakia El Hamra,,,1,0.0101,2.6908,37.6557,13.6787,0.0468,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Marrakech-Safi,MA006,Marrakech-Safi,1,0.0387,9.6827,39.9578,12.9778,1.4957,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Oriental,MA007,Oriental,1,0.0420,9.1693,45.8058,12.9378,3.4988,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Rabat-Salé-Kénitra,MA008,Rabat-Sale-Kenitra,1,0.0136,3.6743,36.9475,8.5287,0.3303,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Souss-Massa,MA009,Souss-Massa,1,0.0300,7.4098,40.4591,8.1024,1.5635,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MAR,N,N,Tanger-Tetouan-Al Hoceima,MA010,Tanger-Tetouan-Al Hoceima,1,0.0139,3.6283,38.1771,13.0873,0.1802,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MDA,N,Y,,,,0,0.0055,1.5040,36.5753,5.3425,0.0489,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,,,,0,0.0033,0.8807,37.5505,3.5573,0.0633,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,Center,MD004,Bender,1,0.0088,2.2910,38.3138,7.1762,0.1756,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,Center,MD004,Bender,1,0.0035,0.9566,36.2975,4.2998,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,Chisinau,MD010,Chisinau,1,0.0004,0.1101,35.1993,0.8155,0.0000,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,Chisinau,MD010,Chisinau,1,0.0002,0.0550,33.3333,0.6239,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,North,,,1,0.0059,1.6892,35.0712,6.2049,0.0000,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,North,,,1,0.0057,1.4484,39.3481,4.5913,0.1977,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,South,MD006,Cahul,1,0.0056,1.5734,35.6785,6.1699,0.0000,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDA,N,Y,South,MD006,Cahul,1,0.0020,0.5968,33.8676,3.4271,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,,,,0,0.4328,75.7394,57.1394,12.1469,54.3547,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,,,,0,0.3791,68.6313,55.2326,14.4981,44.8234,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,,,,0,0.3638,65.7093,55.3596,15.8189,43.3312,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Alaotra Mangoro,MG33,Alaotra Mangoro,1,0.3851,71.5684,53.8132,16.9089,39.4957,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Alaotra Mangoro,MG33,Alaotra Mangoro,1,0.3387,64.7068,52.3484,15.3082,37.6429,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Alaotra Mangoro,MG33,Alaotra Mangoro,1,0.3072,57.2000,53.7025,15.8852,35.1147,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Amoron'i Mania,MG22,Amoron I Mania,1,0.4874,80.3363,60.6750,10.8092,63.0947,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Amoron'i Mania,MG22,Amoron I Mania,1,0.4196,76.6691,54.7284,13.8544,50.8601,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Amoron'i Mania,MG22,Amoron I Mania,1,0.3917,71.6227,54.6940,15.3772,44.6620,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Analamanga,MG11,Analamanga,1,0.2200,42.4042,51.8859,19.9270,22.4305,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Analamanga,MG11,Analamanga,1,0.1777,36.6802,48.4353,19.0084,15.8277,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Analamanga,MG11,Analamanga,1,0.1711,35.2601,48.5334,21.0130,15.5967,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Analanjirofo,MG32,Analanjirofo,1,0.4680,86.0953,54.3631,10.3364,61.0133,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Analanjirofo,MG32,Analanjirofo,1,0.2738,56.3561,48.5796,23.2617,25.2335,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Analanjirofo,MG32,Analanjirofo,1,0.2774,56.6012,49.0141,22.1562,27.8604,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Androy,MG52,Androy,1,0.6239,96.0245,64.9705,2.6921,85.7274,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Androy,MG52,Androy,1,0.5531,92.6724,59.6812,5.5350,71.9740,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Androy,MG52,Androy,1,0.5643,91.2972,61.8141,6.9223,77.2754,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Anosy,MG53,Anosy,1,0.5661,91.0224,62.1891,4.1488,73.5212,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Anosy,MG53,Anosy,1,0.5126,84.1106,60.9385,8.1910,70.2752,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Anosy,MG53,Anosy,1,0.5573,88.9468,62.6535,5.9962,74.4449,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Antananarivo,,,1,0.1290,28.1791,45.7641,21.6536,11.2902,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MDG,N,Y,Atsimo Andrefana,MG51,Atsimo Andrefana,1,0.5068,81.3589,62.2914,8.4758,68.9455,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsimo Andrefana,MG51,Atsimo Andrefana,1,0.5470,87.9037,62.2320,5.3490,73.5841,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsimo Andrefana,MG51,Atsimo Andrefana,1,0.4293,72.3400,59.3437,9.9754,54.9429,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsimo Atsinanana,MG25,Atsimo Atsinanana,1,0.6109,96.3572,63.3964,3.0320,86.4143,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsimo Atsinanana,MG25,Atsimo Atsinanana,1,0.5337,91.1600,58.5411,6.2798,70.1772,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsimo Atsinanana,MG25,Atsimo Atsinanana,1,0.5544,91.0695,60.8738,6.0736,74.7014,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsinanana,MG31,Atsinanana,1,0.3648,68.9846,52.8747,12.0711,49.3525,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsinanana,MG31,Atsinanana,1,0.3438,65.8269,52.2352,15.0906,38.7098,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Atsinanana,MG31,Atsinanana,1,0.3715,66.3052,56.0255,12.9440,47.4527,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Betsiboka,MG43,Betsiboka,1,0.4816,82.1004,58.6654,9.7902,68.4687,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Betsiboka,MG43,Betsiboka,1,0.4243,75.9842,55.8445,15.3574,49.2227,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Betsiboka,MG43,Betsiboka,1,0.4390,79.7333,55.0587,11.6277,55.2340,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Boeny,MG41,Boeny,1,0.3740,67.3317,55.5500,17.2046,44.3065,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Boeny,MG41,Boeny,1,0.3926,67.7918,57.9184,12.2482,50.6564,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Boeny,MG41,Boeny,1,0.3158,59.2286,53.3192,19.6352,37.0006,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Bongolava,MG14,Bongolava,1,0.4420,80.5853,54.8477,13.2594,49.9314,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Bongolava,MG14,Bongolava,1,0.4273,78.3483,54.5358,14.1759,46.5922,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Bongolava,MG14,Bongolava,1,0.3941,72.1656,54.6124,14.7411,45.8979,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Diana,MG71,Diana,1,0.3780,72.8406,51.8973,14.3657,39.4444,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Diana,MG71,Diana,1,0.2500,50.7939,49.2179,23.6534,24.2432,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Diana,MG71,Diana,1,0.2075,44.3333,46.7963,19.6232,18.7071,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Haute Matsiatra,MG21,Haute Matsiatra,1,0.4703,80.7465,58.2393,10.3521,58.9822,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Haute Matsiatra,MG21,Haute Matsiatra,1,0.4059,74.7233,54.3256,15.9031,44.5702,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Haute Matsiatra,MG21,Haute Matsiatra,1,0.3828,68.8554,55.5891,21.3589,45.4223,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Ihorombe,MG24,Ihorombe,1,0.5487,89.5832,61.2453,7.1559,70.4773,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Ihorombe,MG24,Ihorombe,1,0.4753,81.1371,58.5755,9.2581,62.5439,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Ihorombe,MG24,Ihorombe,1,0.4639,81.6253,56.8315,8.7301,61.0167,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Itasy,MG13,Itasy,1,0.4717,84.1977,56.0209,10.5843,57.2995,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Itasy,MG13,Itasy,1,0.3712,70.8875,52.3625,15.4481,39.7775,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Itasy,MG13,Itasy,1,0.3688,70.1206,52.5881,15.2107,40.9418,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Melaky,MG44,Melaky,1,0.5638,93.6683,60.1890,3.1109,79.4474,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Melaky,MG44,Melaky,1,0.4816,84.3664,57.0813,10.8090,64.3161,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Melaky,MG44,Melaky,1,0.4514,78.2606,57.6814,10.0006,56.7675,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Menabe,MG54,Menabe,1,0.4867,84.7388,57.4323,8.9297,59.7230,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Menabe,MG54,Menabe,1,0.4651,79.4674,58.5315,10.7326,59.7093,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Menabe,MG54,Menabe,1,0.5303,87.0542,60.9133,5.9954,67.0370,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Sava,MG72,Sava,1,0.4321,80.1083,53.9354,16.5037,52.5867,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Sava,MG72,Sava,1,0.2549,54.8520,46.4627,25.3752,21.9626,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Sava,MG72,Sava,1,0.2776,57.0551,48.6596,24.4857,27.7145,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Sofia,MG42,Sofia,1,0.4550,82.2780,55.3026,14.0561,57.2210,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Sofia,MG42,Sofia,1,0.3108,61.4406,50.5805,19.9488,33.1877,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Sofia,MG42,Sofia,1,0.3581,69.3998,51.5938,19.3728,40.4685,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Vakinankaratra,MG12,Vakinankaratra,1,0.4426,77.6693,56.9898,11.9409,54.9634,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Vakinankaratra,MG12,Vakinankaratra,1,0.3771,69.1926,54.5068,16.2265,43.1002,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Vakinankaratra,MG12,Vakinankaratra,1,0.3613,65.9677,54.7736,18.5394,39.3552,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Vatovavy Fitovinany,MG23,Vatovavy Fitovinany,1,0.5606,93.0462,60.2497,5.3225,79.1153,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Vatovavy Fitovinany,MG23,Vatovavy Fitovinany,1,0.5029,85.3050,58.9551,8.4494,66.7840,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDG,N,Y,Vatovavy Fitovinany,MG23,Vatovavy Fitovinany,1,0.4360,77.2390,56.4440,14.0424,56.6439,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MDV,N,N,,,,0,0.0027,0.7720,34.3799,4.8433,0.0000,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MEX,N,Y,,,,0,0.0253,6.0140,42.0243,5.3553,1.4122,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MEX,N,Y,,,,0,0.0209,5.2526,39.8153,5.4295,0.9526,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MEX,N,Y,,,,0,0.0162,4.1368,39.1552,2.7917,0.6545,2020-01-01 00:00:00+00:00,2020-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MEX,N,Y,,,,0,0.0165,4.0760,40.5583,3.4999,0.7628,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MEX,N,Y,,,,0,0.0199,5.0024,39.7835,3.1277,0.9069,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,,,,0,0.0310,7.6251,40.6990,4.6741,1.1319,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,,,,0,0.0084,2.2016,37.9814,2.3118,0.1880,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,,,,0,0.0052,1.3690,37.7967,1.2939,0.0505,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,East,MK002,East,1,0.0108,2.5081,43.0122,1.3754,0.6518,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,East,MK002,East,1,0.0161,4.1881,38.3721,7.4540,0.3999,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,East,MK002,East,1,0.0086,2.1125,40.8877,3.9603,0.0000,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Northeast,MK007,Northeast,1,0.0417,10.4572,39.8935,0.5128,0.9137,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Northeast,MK007,Northeast,1,0.0053,1.5116,35.0017,2.7052,0.1293,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Northeast,MK007,Northeast,1,0.0018,0.5076,36.3029,0.6522,0.0000,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Pelagonia,MK005,Pelagonia,1,0.0317,7.9524,39.9160,3.1379,1.4425,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Pelagonia,MK005,Pelagonia,1,0.0037,0.9398,39.2920,2.3145,0.0693,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Pelagonia,MK005,Pelagonia,1,0.0040,1.1641,34.7654,1.0349,0.0000,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Polog,MK006,Polog,1,0.0240,6.4385,37.2671,5.1265,0.2435,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Polog,MK006,Polog,1,0.0093,2.4814,37.4944,1.8035,0.4365,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Polog,MK006,Polog,1,0.0009,0.2339,37.1212,0.0201,0.0000,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Skopje,MK008,Skopje,1,0.0254,6.6695,38.1585,4.2281,0.9503,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Skopje,MK008,Skopje,1,0.0062,1.6451,37.9174,0.4006,0.0000,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Skopje,MK008,Skopje,1,0.0062,1.6996,36.3482,1.2102,0.0000,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Southeast,MK004,Southeast,1,0.0967,21.6557,44.6494,9.5864,4.3381,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Southeast,MK004,Southeast,1,0.0037,0.9913,37.1400,2.3100,0.1478,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Southeast,MK004,Southeast,1,0.0108,2.4661,43.7469,4.1088,0.8095,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Southwest,MK003,Southwest,1,0.0288,6.6090,43.5668,9.6933,1.0297,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Southwest,MK003,Southwest,1,0.0175,5.0249,34.8280,3.0723,0.0000,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Southwest,MK003,Southwest,1,0.0079,2.0629,38.3684,0.4099,0.0000,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Vardar,MK001,Vardar,1,0.0238,5.5851,42.6410,1.0056,1.5477,2005-01-01 00:00:00+00:00,2006-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Vardar,MK001,Vardar,1,0.0134,2.8719,46.7019,3.4926,0.7993,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MKD,N,N,Vardar,MK001,Vardar,1,0.0015,0.4514,34.2189,0.3837,0.0000,2018-01-01 00:00:00+00:00,2019-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,,,,0,0.5013,83.7256,59.8746,7.8122,64.0008,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,,,,0,0.4195,73.9945,56.6947,12.3442,50.9886,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,,,,0,0.3614,66.4396,54.3900,15.8391,41.9014,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Bamako,ML09,Bamako,1,0.1864,40.2547,46.2996,26.9506,14.9009,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Bamako,ML09,Bamako,1,0.0961,22.3637,42.9714,32.0170,5.3512,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Bamako,ML09,Bamako,1,0.1020,23.4948,43.4054,33.3613,5.3333,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Gao,ML07,Gao,1,0.5002,84.5435,59.1602,8.2909,61.5645,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Gao,ML07,Gao,1,0.4896,86.1468,56.8302,7.5030,64.4065,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Gao,ML07,Gao,1,0.4598,82.3852,55.8167,10.9651,56.5272,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Kayes,ML01,Kayes,1,0.5292,89.1858,59.3391,5.1566,66.6310,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Kayes,ML01,Kayes,1,0.4227,75.5648,55.9343,11.9646,49.0808,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Kayes,ML01,Kayes,1,0.4094,73.8692,55.4234,13.1700,47.8349,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Kidal,ML08,Kidal,1,0.4760,83.8295,56.7774,11.1513,62.9372,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MLI,Y,Y,Koulikoro,ML02,Koulikoro,1,0.5510,89.6831,61.4339,4.8150,70.7052,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Koulikoro,ML02,Koulikoro,1,0.4334,76.9252,56.3425,12.4304,53.0487,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Koulikoro,ML02,Koulikoro,1,0.3351,62.3349,53.7517,16.7624,38.7013,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Mopti,ML05,Mopti,1,0.5827,93.7038,62.1819,3.4182,80.6345,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Mopti,ML05,Mopti,1,0.5312,89.9776,59.0322,4.6407,69.6817,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Mopti,ML05,Mopti,1,0.4885,85.6677,57.0218,8.5764,60.0123,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Sikasso,ML03,Sikasso,1,0.5605,91.5648,61.2118,4.6647,72.6161,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Sikasso,ML03,Sikasso,1,0.4765,81.4265,58.5223,9.9112,58.1890,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Sikasso,ML03,Sikasso,1,0.3938,74.5020,52.8599,12.8233,45.2078,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Ségou,ML04,Segou,1,0.4989,85.0380,58.6651,7.0351,64.1520,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Ségou,ML04,Segou,1,0.4239,77.3760,54.7895,10.9176,49.8754,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Ségou,ML04,Segou,1,0.4044,74.1249,54.5624,12.5795,48.4341,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Timbuktu,ML06,Tombouctou,1,0.5570,88.3239,63.0587,6.3858,70.9184,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Timbuktu,ML06,Tombouctou,1,0.5471,89.9229,60.8451,4.7111,72.0580,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MLI,Y,Y,Timbuktu,ML06,Tombouctou,1,0.5266,86.5375,60.8498,6.3929,68.1125,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MMR,Y,Y,,,,0,0.1758,38.3159,45.8939,21.9166,13.8448,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Ayeyarwaddy,MMR017,Ayeyarwady,1,0.2371,50.8304,46.6486,26.2285,20.4090,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Bago,MMR007,Bago (East),1,0.1779,40.7127,43.6948,23.9505,10.5222,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Chin,MMR004,Chin,1,0.1849,41.0348,45.0713,23.3706,15.1233,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Kachin,MMR001,Kachin,1,0.1211,28.1097,43.0773,19.9582,9.5681,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Kayah,MMR002,Kayah,1,0.1294,29.7590,43.4949,20.7446,8.4537,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Kayin,MMR003,Kayin,1,0.2301,45.0056,51.1231,18.8028,23.5975,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Magway,MMR009,Magway,1,0.1774,41.4030,42.8526,20.8348,11.5242,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Mandalay,MMR010,Mandalay,1,0.1366,31.7051,43.0864,20.4886,9.1798,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Mon,MMR011,Mon,1,0.1508,34.4105,43.8115,19.7461,10.3508,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Naypyitaw,MMR018,Nay Pyi Taw,1,0.1460,33.7666,43.2316,22.9865,7.6693,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Rakhine,MMR012,Rakhine,1,0.3019,58.5587,51.5549,20.7900,30.2145,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Sagaing,MMR005,Sagaing,1,0.1574,36.3656,43.2852,26.8523,9.0055,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Shan,MMR014,Shan (South),1,0.2343,46.8295,50.0409,21.6688,23.0867,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Taninthayi,MMR006,Tanintharyi,1,0.1877,40.5369,46.2953,20.8491,16.2586,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MMR,Y,Y,Yangon,MMR013,Yangon,1,0.0677,15.8053,42.8166,16.3224,4.6232,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MNE,N,N,,,,0,0.0016,0.3711,44.1727,3.8193,0.0943,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNE,N,N,,,,0,0.0049,1.2358,39.6427,2.8881,0.0595,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,,,,0,0.0811,19.5933,41.3968,22.2802,3.8587,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,,,,0,0.0558,13.3741,41.7241,18.7430,2.0803,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,,,,0,0.0390,9.9238,39.2968,15.8521,1.3907,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Central,,,1,0.0750,18.2370,41.1187,22.9282,3.0490,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Central,,,1,0.0940,22.2941,42.1714,29.6957,3.1456,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Central,,,1,0.0704,17.8435,39.4787,21.9082,2.4096,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Eastern,,,1,0.0893,21.9828,40.6440,32.0890,3.4584,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Eastern,,,1,0.0126,3.4558,36.4231,7.1467,0.2561,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Eastern,,,1,0.0112,2.9806,37.5003,9.5583,0.3356,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Khangai,MN62,Ovorkhangai,1,0.1330,31.0245,42.8627,30.3633,7.3523,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Khangai,MN62,Ovorkhangai,1,0.0658,16.2604,40.4845,22.8966,2.5294,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Khangai,MN62,Ovorkhangai,1,0.0343,9.0852,37.7557,19.1598,0.7849,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Ulaanbaatar,MN11,Ulaanbaatar,1,0.0301,8.4540,35.6450,12.5043,0.2960,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Ulaanbaatar,MN11,Ulaanbaatar,1,0.1250,28.5059,43.8543,29.3053,6.7863,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Ulaanbaatar,MN11,Ulaanbaatar,1,0.1164,28.6845,40.5750,26.4456,5.1567,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Western,,,1,0.1433,32.7493,43.7568,30.3214,9.3948,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Western,,,1,0.0537,13.0562,41.0954,23.1921,1.1806,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MNG,N,N,Western,,,1,0.0282,7.4225,37.9756,17.9819,0.7289,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,,,,0,0.5126,83.8561,61.1228,8.5493,64.9070,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,,,,0,0.4004,71.1565,56.2725,14.0686,46.7979,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,,,,0,0.3302,59.8541,55.1671,17.0609,38.3217,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Cabo Delgado,MZ01,Cabo Delgado,1,0.5908,94.6501,62.4176,4.1600,76.0363,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Cabo Delgado,MZ01,Cabo Delgado,1,0.5310,87.6211,60.5996,8.5985,67.0319,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Cabo Delgado,MZ01,Cabo Delgado,1,0.4209,73.6103,57.1771,13.9787,49.8121,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Gaza,MZ02,Gaza,1,0.5075,85.9484,59.0417,9.5036,62.0451,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Gaza,MZ02,Gaza,1,0.3389,64.4233,52.6105,17.2657,37.3509,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Gaza,MZ02,Gaza,1,0.1472,32.6616,45.0543,26.1811,11.2197,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Inhambane,MZ03,Inhambane,1,0.4859,82.9556,58.5677,11.0396,60.5198,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Inhambane,MZ03,Inhambane,1,0.3473,67.4079,51.5261,18.4415,38.3411,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Inhambane,MZ03,Inhambane,1,0.1855,41.8703,44.2956,24.6498,13.5013,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Manica,MZ04,Manica,1,0.5097,85.1111,59.8844,10.5042,63.2765,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Manica,MZ04,Manica,1,0.2921,59.4321,49.1526,22.1001,26.6173,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Manica,MZ04,Manica,1,0.2736,53.2546,51.3839,24.8581,28.1010,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Maputo,MZ05,Maputo,1,0.2847,57.8405,49.2282,20.1690,26.4092,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Maputo,MZ05,Maputo,1,0.1418,30.5155,46.4689,22.1592,10.9499,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Maputo,MZ05,Maputo,1,0.0500,11.1833,44.6674,16.3865,3.5679,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Maputo City,MZ06,Maputo City,1,0.1384,30.4723,45.4058,24.2775,10.1725,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Maputo City,MZ06,Maputo City,1,0.0416,10.0501,41.3953,21.9946,1.9420,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Maputo City,MZ06,Maputo City,1,0.0140,3.8406,36.3674,10.4553,0.0000,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Nampula,MZ07,Nampula,1,0.5710,90.6124,63.0187,6.5758,73.9843,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Nampula,MZ07,Nampula,1,0.4414,78.2097,56.4355,12.8895,51.8808,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Nampula,MZ07,Nampula,1,0.4340,74.5218,58.2424,15.0717,53.1882,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Niassa,MZ08,Niassa,1,0.5964,94.1249,63.3592,3.9057,78.0413,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Niassa,MZ08,Niassa,1,0.4644,81.5779,56.9244,11.5531,55.8759,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Niassa,MZ08,Niassa,1,0.4259,75.1984,56.6407,14.9517,50.4488,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Sofala,MZ09,Sofala,1,0.5240,84.2430,62.1994,7.8436,64.9470,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Sofala,MZ09,Sofala,1,0.3766,69.7183,54.0244,13.4827,41.8431,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Sofala,MZ09,Sofala,1,0.3038,56.6616,53.6100,14.5453,33.3912,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Tete,MZ10,Tete,1,0.5908,91.2382,64.7486,4.7912,77.4142,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Tete,MZ10,Tete,1,0.4766,81.6979,58.3403,12.1881,58.3487,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Tete,MZ10,Tete,1,0.3435,64.0343,53.6475,20.9440,40.1482,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Zambezia,MZ11,Zambezia,1,0.5981,95.3338,62.7390,3.0236,80.4447,2003-01-01 00:00:00+00:00,2003-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Zambezia,MZ11,Zambezia,1,0.5152,87.2130,59.0711,9.4953,63.5063,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MOZ,Y,Y,Zambezia,MZ11,Zambezia,1,0.4213,76.1064,55.3611,14.4676,51.2209,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,,,,0,0.3556,62.6618,56.7560,13.8896,41.2340,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,,,,0,0.3073,56.1858,54.6858,14.0673,34.4256,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,,,,0,0.3209,57.4070,55.9039,12.3897,37.3722,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Adrar,MR07,Adrar,1,0.2436,47.0970,51.7334,21.3206,25.2383,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Adrar,MR07,Adrar,1,0.2060,42.1958,48.8314,26.2407,19.5261,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Adrar,MR07,Adrar,1,0.1883,39.6080,47.5386,20.2009,16.1342,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Assaba,MR03,Assaba,1,0.4960,83.4924,59.4092,9.5601,60.2237,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Assaba,MR03,Assaba,1,0.4219,74.5511,56.5915,13.7666,48.4681,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Assaba,MR03,Assaba,1,0.4257,74.0857,57.4574,12.1531,51.7626,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Brakna,MR05,Brakna,1,0.3893,71.4381,54.4969,12.9669,43.6039,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Brakna,MR05,Brakna,1,0.3599,67.5221,53.2979,16.3875,41.0962,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Brakna,MR05,Brakna,1,0.3309,63.7048,51.9422,15.6350,37.1393,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Dakhlet Nouadhibou,MR08,Dakhlet Nouadhibou,1,0.0787,17.8221,44.1848,11.7323,5.0839,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Dakhlet Nouadhibou,MR08,Dakhlet Nouadhibou,1,0.0442,10.9236,40.4635,8.2128,2.7144,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Dakhlet Nouadhibou,MR08,Dakhlet Nouadhibou,1,0.0463,11.6115,39.8629,11.5279,2.2565,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Gorgol,MR04,Gorgol,1,0.5064,83.7865,60.4434,9.0061,64.3222,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Gorgol,MR04,Gorgol,1,0.4331,77.2046,56.0970,12.8399,51.5221,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Gorgol,MR04,Gorgol,1,0.4692,79.1933,59.2503,9.8964,58.8919,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Guidimaka,MR10,Guidimagha,1,0.5323,86.0793,61.8385,9.3465,63.0263,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Guidimaka,MR10,Guidimagha,1,0.4590,77.8378,58.9700,13.9528,57.1976,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Guidimaka,MR10,Guidimagha,1,0.5167,86.0005,60.0756,8.4716,64.6268,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Hosh ech Chargui,MR01,Hodh Chargui,1,0.5107,85.5510,59.6971,9.2258,63.1045,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Hosh ech Chargui,MR01,Hodh Chargui,1,0.4723,81.6556,57.8465,10.5953,56.3010,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Hosh ech Chargui,MR01,Hodh Chargui,1,0.5204,87.0138,59.8075,7.2577,64.4450,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Hosh el Gharbi,MR02,Hodh El Gharbi,1,0.5438,88.1646,61.6809,7.1327,71.0164,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Hosh el Gharbi,MR02,Hodh El Gharbi,1,0.4470,78.8146,56.7101,10.8336,52.0043,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Hosh el Gharbi,MR02,Hodh El Gharbi,1,0.4784,80.8903,59.1398,8.2574,60.0953,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Nouakchott,MR13,Nouakchott Ouest,1,0.1333,28.8017,46.2854,20.8183,11.4683,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Nouakchott,MR13,Nouakchott Ouest,1,0.0819,18.9431,43.2555,14.6733,5.2203,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Nouakchott,MR13,Nouakchott Ouest,1,0.0860,20.0996,42.7817,15.5376,6.1219,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Nouakchott Nord,MR14,Nouakchott Nord,1,0.0918,20.5297,44.7156,13.6092,8.0079,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MRT,N,N,Nouakchott Ouest,MR13,Nouakchott Ouest,1,0.0775,19.7612,39.2039,18.5722,2.6619,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MRT,N,N,Nouakchott Sud,MR15,Nouakchott Sud,1,0.0996,24.2244,41.1037,15.8312,5.7397,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MRT,N,N,Tagant,MR09,Tagant,1,0.4020,72.1142,55.7388,12.8990,45.3924,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Tagant,MR09,Tagant,1,0.3199,60.6952,52.7128,16.2455,35.8418,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Tagant,MR09,Tagant,1,0.3704,68.2310,54.2815,12.2950,41.0983,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Tiris Zemmour,MR11,Tiris Zemmour,1,0.1251,27.1449,46.0955,20.5741,10.0149,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Tiris Zemmour,MR11,Tiris Zemmour,1,0.0451,10.6316,42.4585,13.3266,2.6527,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Tiris Zemmour,MR11,Tiris Zemmour,1,0.0710,15.9555,44.4904,15.1756,4.8560,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Tiris Zemmour & Inchiri,,,1,0.0722,16.1654,44.6405,15.5715,5.0417,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MRT,N,N,Trarza,MR06,Trarza,1,0.2695,54.5560,49.4062,19.0678,25.6640,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Trarza,MR06,Trarza,1,0.2172,46.2545,46.9599,23.0098,18.6893,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MRT,N,N,Trarza,MR06,Trarza,1,0.2222,48.1136,46.1750,19.6320,17.9840,2019-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,,,,0,0.3303,66.7542,49.4837,23.4926,31.4980,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,,,,0,0.2436,52.5758,46.3314,28.1583,18.8630,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,,,,0,0.2313,49.9251,46.3224,27.5434,17.5473,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Balaka,,,1,0.3525,73.0606,48.2479,20.7978,32.0840,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Balaka,,,1,0.2401,52.3297,45.8747,32.5184,18.9606,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Balaka,,,1,0.2391,52.1211,45.8755,29.0033,16.6346,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Blantyre,,,1,0.1952,44.7063,43.6722,24.0981,14.1256,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Blantyre,,,1,0.1514,34.1430,44.3545,29.8577,7.9036,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Blantyre,,,1,0.1150,26.5913,43.2448,24.1862,6.5995,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chikwawa,,,1,0.3750,75.6496,49.5739,17.6509,36.8856,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chikwawa,,,1,0.3070,64.4317,47.6549,21.0634,26.5374,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chikwawa,,,1,0.2152,48.0632,44.7749,28.3706,14.0238,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chiradzulu,,,1,0.3206,67.5174,47.4844,26.6570,25.7642,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chiradzulu,,,1,0.2072,45.0467,45.9863,37.9595,18.2340,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chiradzulu,,,1,0.1948,44.1714,44.1029,35.0517,11.8791,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chitipa,,,1,0.3029,67.4171,44.9357,25.2523,25.6651,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chitipa,,,1,0.1428,34.6653,41.2003,32.9500,6.8429,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Chitipa,,,1,0.1353,31.5989,42.8211,37.7855,6.6454,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Dedza,,,1,0.4173,80.4137,51.8886,15.2164,45.4269,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Dedza,,,1,0.3198,67.6168,47.2888,24.6861,26.6799,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Dedza,,,1,0.3182,66.2868,47.9970,22.3496,25.8943,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Dowa,,,1,0.3437,67.8549,50.6511,27.8851,31.4153,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Dowa,,,1,0.2696,57.2178,47.1194,30.6729,20.3317,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Dowa,,,1,0.2412,52.3619,46.0575,27.4773,16.5757,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Karonga,,,1,0.2433,52.8483,46.0309,36.6754,20.9755,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Karonga,,,1,0.1765,43.6374,40.4506,33.5405,7.3196,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Karonga,,,1,0.1432,33.5545,42.6638,35.4946,8.5953,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Kasungu,,,1,0.3257,65.4327,49.7714,24.9673,31.3484,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Kasungu,,,1,0.2462,53.4253,46.0750,34.1373,18.1737,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Kasungu,,,1,0.1887,42.0593,44.8591,32.2021,14.4508,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Likoma,,,1,0.0857,20.4531,41.8815,29.9239,2.9500,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MWI,N,N,Lilongwe,,,1,0.3215,62.7610,51.2267,22.3204,34.1574,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Lilongwe,,,1,0.2106,44.4612,47.3741,27.1028,17.8566,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Lilongwe,,,1,0.2306,49.5886,46.4971,24.1072,17.1637,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Machinga,,,1,0.3743,71.3887,52.4279,21.2726,40.2861,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Machinga,,,1,0.3246,66.2143,49.0170,23.7484,31.0956,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Machinga,,,1,0.2889,60.4965,47.7570,25.9650,24.7854,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mangochi,,,1,0.4044,75.9760,53.2284,16.1642,44.7543,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mangochi,,,1,0.3128,64.2402,48.6992,19.1996,32.4375,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mangochi,,,1,0.3779,74.1325,50.9700,16.4328,37.9732,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mchinji,,,1,0.3726,75.3059,49.4838,19.9405,33.3903,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mchinji,,,1,0.2940,61.4768,47.8299,29.3257,23.7974,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mchinji,,,1,0.2772,57.5314,48.1861,30.2975,23.6211,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mulange,,,1,0.3237,65.1020,49.7291,27.9872,26.8671,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mulange,,,1,0.2645,58.2588,45.3996,25.9475,17.2084,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mulange,,,1,0.2048,46.5939,43.9601,32.1160,12.4798,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mwanza,,,1,0.3523,72.5844,48.5391,19.7988,34.3826,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mwanza,,,1,0.2443,49.7039,49.1455,26.9157,24.2735,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mwanza,,,1,0.2660,57.2939,46.4252,24.6755,21.5514,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mzimba,,,1,0.2679,60.6415,44.1728,30.7599,18.4658,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mzimba,,,1,0.1691,39.3096,43.0071,36.7430,9.1629,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Mzimba,,,1,0.1548,36.1425,42.8180,33.7122,9.2133,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Neno,,,1,0.3505,70.1672,49.9473,26.3618,37.3200,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Neno,,,1,0.3029,62.5263,48.4426,23.9558,24.8692,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Neno,,,1,0.2372,51.6525,45.9217,32.4411,17.1019,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nkhata Bay,,,1,0.1715,39.6973,43.1916,30.8858,9.8788,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +MWI,N,N,Nkhata Bay & Likoma ,,,1,0.2836,63.5804,44.6118,25.9683,20.8398,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nkhata Bay & Likoma ,,,1,0.2074,48.2428,43.0007,31.6252,11.6076,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nkhata Bay & Likoma ,,,1,0.1683,38.9112,43.2634,31.0623,10.1105,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nkhotakota,,,1,0.3433,66.3866,51.7106,27.9310,34.7011,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nkhotakota,,,1,0.2153,46.1102,46.6924,29.8466,16.8805,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nkhotakota,,,1,0.2439,52.2154,46.7091,26.4975,20.5243,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nsanje,,,1,0.4045,79.0891,51.1436,15.0872,45.6104,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nsanje,,,1,0.2858,60.4097,47.3022,28.3100,22.5855,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Nsanje,,,1,0.2698,56.5826,47.6826,30.5340,24.8879,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Ntcheu,,,1,0.3471,68.9321,50.3583,26.1552,36.3180,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Ntcheu,,,1,0.2130,49.1027,43.3771,29.9976,12.8328,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Ntcheu,,,1,0.2262,49.5229,45.6814,34.2628,16.6219,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Ntchisi,,,1,0.3565,70.1146,50.8517,25.1109,36.1732,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Ntchisi,,,1,0.2799,59.5393,47.0118,24.7677,23.9461,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Ntchisi,,,1,0.2389,52.8591,45.1922,30.6092,16.7522,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Phalombe,,,1,0.3881,75.3089,51.5388,21.6321,36.3245,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Phalombe,,,1,0.3015,64.9574,46.4122,23.9158,24.1602,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Phalombe,,,1,0.2426,53.1432,45.6452,31.7020,16.3995,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Rumphi,,,1,0.2134,47.8123,44.6316,39.5947,15.8015,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Rumphi,,,1,0.1648,40.0270,41.1756,31.9593,5.0467,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Rumphi,,,1,0.1054,24.6273,42.8100,40.8229,6.2048,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Salima,,,1,0.3236,63.7912,50.7288,29.1713,31.6026,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Salima,,,1,0.3201,67.2136,47.6298,22.1344,26.1753,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Salima,,,1,0.2613,56.4581,46.2837,24.6957,19.6230,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Thyolo,,,1,0.3231,68.6745,47.0498,23.3124,28.6528,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Thyolo,,,1,0.2459,55.0461,44.6805,28.4618,14.7021,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Thyolo,,,1,0.2699,58.5253,46.1187,26.8987,22.5788,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Zomba,,,1,0.3233,68.2846,47.3407,23.1047,25.2368,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Zomba,,,1,0.2370,52.5740,45.0719,29.6649,17.0856,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +MWI,N,N,Zomba,,,1,0.2073,46.3391,44.7297,30.9985,11.7864,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,,,,0,0.2050,42.9610,47.7067,22.0124,17.4123,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,,,,0,0.1578,35.1318,44.9114,21.2730,11.1935,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Erongo,NA02,Erongo,1,0.0509,11.8280,42.9934,16.6310,2.6280,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Erongo,NA02,Erongo,1,0.0295,7.8939,37.3244,12.6321,0.2323,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Hardap,NA03,Hardap,1,0.1407,31.3112,44.9320,15.3506,10.9618,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Hardap,NA03,Hardap,1,0.0706,16.5321,42.7323,19.2769,4.2110,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Karas,NA04,Karas,1,0.0963,22.8161,42.2251,14.0977,5.2863,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Karas,NA04,Karas,1,0.0754,18.2789,41.2739,20.3181,3.9504,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Kavango,NA05,Kavango East,1,0.3566,71.8786,49.6127,17.8643,37.7305,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Kavango,NA05,Kavango East,1,0.3059,65.8855,46.4335,23.6657,27.9346,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Khomas,NA06,Khomas,1,0.0398,9.8872,40.2805,10.3962,2.0437,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Khomas,NA06,Khomas,1,0.0372,9.6890,38.4130,10.1509,1.7799,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Kunene,NA07,Kunene,1,0.3851,67.5063,57.0510,13.9522,42.1063,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Kunene,NA07,Kunene,1,0.2541,51.2889,49.5404,15.7933,22.7490,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Ohangwena,NA08,Ohangwena,1,0.3311,68.0696,48.6470,27.7950,28.8950,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Ohangwena,NA08,Ohangwena,1,0.3017,62.6640,48.1500,24.5335,25.1726,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Omaheke,NA09,Omaheke,1,0.2413,50.0569,48.1984,17.6588,19.3880,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Omaheke,NA09,Omaheke,1,0.2094,42.6661,49.0678,23.1879,18.8145,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Omusati,NA10,Omusati,1,0.2495,55.2667,45.1422,35.8930,17.2336,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Omusati,NA10,Omusati,1,0.2024,47.4209,42.6766,27.6249,10.3325,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Oshana,NA11,Oshana,1,0.1844,40.8731,45.1103,33.2107,11.1726,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Oshana,NA11,Oshana,1,0.1093,28.1343,38.8455,20.5514,4.6126,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Oshikoto,NA12,Oshikoto,1,0.2476,50.8025,48.7405,21.8761,22.7956,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Oshikoto,NA12,Oshikoto,1,0.1784,39.7470,44.8941,29.3155,10.9934,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Otjozondjupa,NA13,Otjozondjupa,1,0.1911,38.5636,49.5625,18.5812,18.1059,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Otjozondjupa,NA13,Otjozondjupa,1,0.1000,21.7448,46.0092,19.3921,7.9537,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Zambezi,NA01,Zambezi,1,0.2098,45.8792,45.7320,39.6966,15.2380,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NAM,N,N,Zambezi,NA01,Zambezi,1,0.1683,38.6298,43.5794,38.2515,9.0869,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,,,,0,0.6684,92.9136,71.9346,3.6770,84.7269,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,,,,0,0.5938,89.8682,66.0700,5.6284,75.3815,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Agadez,NE001,Agadez,1,0.4881,77.8635,62.6807,9.0818,61.0792,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Agadez,NE001,Agadez,1,0.3868,65.0878,59.4337,14.9439,48.6331,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Diffa,NE002,Diffa,1,0.6465,95.9503,67.3773,2.6286,86.6469,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Diffa,NE002,Diffa,1,0.5693,92.1616,61.7699,3.9077,75.0712,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Dosso,NE003,Dosso,1,0.7047,96.6903,72.8821,1.9144,88.9005,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Dosso,NE003,Dosso,1,0.6169,93.8363,65.7375,4.0137,78.6664,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Maradi,NE004,Maradi,1,0.6932,96.1344,72.1068,2.3144,88.5916,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Maradi,NE004,Maradi,1,0.6441,94.5056,68.1550,3.3549,82.9801,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Niamey,NE008,Niamey,1,0.2993,55.3236,54.1016,15.4226,31.7437,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Niamey,NE008,Niamey,1,0.2096,41.8556,50.0855,23.7245,20.4454,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Tahoua,NE005,Tahoua,1,0.7046,96.3078,73.1654,2.9989,89.9659,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Tahoua,NE005,Tahoua,1,0.6258,93.8918,66.6532,4.3668,79.5876,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Tillaberi,NE006,Tillaberi,1,0.7384,97.3014,75.8883,1.9236,92.6762,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Tillaberi,NE006,Tillaberi,1,0.6092,92.5244,65.8379,5.6721,76.3968,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Zinder,NE007,Zinder,1,0.6894,95.4650,72.2130,3.4670,88.7020,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NER,Y,Y,Zinder,NE007,Zinder,1,0.6245,93.5629,66.7461,4.0986,79.7456,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,,,,0,0.2304,42.3418,54.4090,16.3750,25.1690,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,,,,0,0.2149,40.8224,52.6365,16.6105,21.6147,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,,,,0,0.2083,38.1788,54.5492,15.6104,22.2231,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,,,,0,0.1748,33.0441,52.9043,16.6232,18.0992,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Abia,NG001,Abia,1,0.0675,15.2348,44.2920,16.3376,4.9088,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Abia,NG001,Abia,1,0.0346,8.0306,43.0314,10.5708,1.9762,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Abia,NG001,Abia,1,0.0285,7.1120,40.0238,5.7316,0.9715,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Abia,NG001,Abia,1,0.0419,9.3971,44.6266,10.5209,3.3537,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Adamawa,NG002,Adamawa,1,0.1885,37.2324,50.6329,30.7248,18.5325,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Adamawa,NG002,Adamawa,1,0.2459,48.4318,50.7709,20.0354,27.0256,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Adamawa,NG002,Adamawa,1,0.2728,51.7935,52.6685,24.4244,27.8245,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Adamawa,NG002,Adamawa,1,0.1820,39.0971,46.5450,31.1860,15.2143,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Akwa Ibom,NG003,Akwa Ibom,1,0.0572,13.2696,43.1253,21.2287,4.0639,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Akwa Ibom,NG003,Akwa Ibom,1,0.0515,11.6178,44.3581,15.6687,4.0752,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Akwa Ibom,NG003,Akwa Ibom,1,0.0611,13.7660,44.3666,16.7502,5.2353,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Akwa Ibom,NG003,Akwa Ibom,1,0.0446,9.8074,45.4280,24.3235,3.6118,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Anambra,NG004,Anambra,1,0.0484,10.6295,45.5668,7.7510,3.4461,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Anambra,NG004,Anambra,1,0.0341,7.8455,43.4787,10.3281,2.0479,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Anambra,NG004,Anambra,1,0.0291,6.5383,44.4643,7.8386,1.8372,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Anambra,NG004,Anambra,1,0.0089,2.0449,43.3105,13.7643,0.5472,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bauchi,NG005,Bauchi,1,0.4763,74.5047,63.9232,11.8186,57.7558,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bauchi,NG005,Bauchi,1,0.4161,72.9656,57.0288,8.7635,50.4365,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bauchi,NG005,Bauchi,1,0.3750,65.8710,56.9286,14.3649,42.4589,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bauchi,NG005,Bauchi,1,0.4411,75.3563,58.5358,12.4431,50.7513,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bayelsa,NG006,Bayelsa,1,0.0655,15.1815,43.1723,24.8786,5.0405,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bayelsa,NG006,Bayelsa,1,0.0850,18.5136,45.8954,24.7494,7.6550,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bayelsa,NG006,Bayelsa,1,0.0472,11.3627,41.4990,28.0286,2.9093,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Bayelsa,NG006,Bayelsa,1,0.0644,13.9659,46.0830,23.5494,5.9807,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Benue,NG007,Benue,1,0.2089,44.4444,47.0131,35.3544,17.8184,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Benue,NG007,Benue,1,0.1289,28.1441,45.8130,34.8613,9.8971,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Benue,NG007,Benue,1,0.1072,24.1375,44.3995,32.2310,7.6147,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Benue,NG007,Benue,1,0.1156,27.0206,42.7942,35.0295,7.6549,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Borno,NG008,Borno,1,0.3514,66.4953,52.8506,11.3477,43.7696,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Borno,NG008,Borno,1,0.1786,37.2264,47.9864,21.4201,15.1448,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Borno,NG008,Borno,1,0.2521,48.5259,51.9572,18.0612,28.2110,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Borno,NG008,Borno,1,0.2922,53.8861,54.2321,23.3856,31.1462,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Cross River,NG009,Cross River,1,0.0888,20.1580,44.0749,32.4004,6.2744,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Cross River,NG009,Cross River,1,0.0765,17.9185,42.7154,35.8355,5.4037,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Cross River,NG009,Cross River,1,0.0644,14.8856,43.2846,32.0785,5.1964,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Cross River,NG009,Cross River,1,0.0775,19.0860,40.6066,34.7097,3.9392,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Delta,NG010,Delta,1,0.0692,15.4870,44.6649,15.7691,5.4670,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Delta,NG010,Delta,1,0.0398,9.2727,42.9735,15.5854,2.6098,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Delta,NG010,Delta,1,0.0377,9.1208,41.3074,13.2810,2.1488,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Delta,NG010,Delta,1,0.0507,11.7821,43.0696,17.0435,3.0882,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ebonyi,NG011,Ebonyi,1,0.1679,34.6343,48.4663,33.5735,17.2653,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ebonyi,NG011,Ebonyi,1,0.1142,26.4138,43.2251,40.7614,6.7143,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ebonyi,NG011,Ebonyi,1,0.1026,21.3559,48.0557,41.0931,10.2617,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ebonyi,NG011,Ebonyi,1,0.0341,8.0227,42.4481,12.7693,1.0561,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Edo,NG012,Edo,1,0.0457,10.9972,41.5905,13.8970,2.2333,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Edo,NG012,Edo,1,0.0128,3.3534,38.0847,9.6406,0.3280,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Edo,NG012,Edo,1,0.0496,10.7407,46.1417,12.6072,4.8314,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Edo,NG012,Edo,1,0.0358,8.3160,43.0149,6.3309,1.6950,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ekiti,NG013,Ekiti,1,0.0272,6.4815,41.9646,7.0066,1.0899,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ekiti,NG013,Ekiti,1,0.0395,9.3407,42.2876,16.4114,2.2295,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ekiti,NG013,Ekiti,1,0.0646,15.1696,42.6080,26.3271,4.6268,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ekiti,NG013,Ekiti,1,0.0532,12.4744,42.6072,21.6381,3.5337,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Enugu,NG014,Enugu,1,0.0843,18.4728,45.6120,29.3917,5.8646,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Enugu,NG014,Enugu,1,0.0305,7.6093,40.0226,17.4198,1.4050,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Enugu,NG014,Enugu,1,0.0538,11.7080,45.9219,21.1651,5.3892,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Enugu,NG014,Enugu,1,0.0300,6.8819,43.6104,12.5876,2.3834,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,FCT,,,1,0.0850,18.2897,46.4785,10.9357,6.8885,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,FCT,,,1,0.0892,18.5877,47.9784,14.3153,8.2147,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,FCT,,,1,0.0859,18.5072,46.4205,13.7317,6.7642,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,FCT,,,1,0.0414,10.1775,40.6438,12.7172,2.0141,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Gombe,NG016,Gombe,1,0.3635,65.2887,55.6781,15.4268,41.8055,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Gombe,NG016,Gombe,1,0.3746,67.5166,55.4853,14.4035,41.9658,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Gombe,NG016,Gombe,1,0.4176,71.8128,58.1508,14.3955,49.2136,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Gombe,NG016,Gombe,1,0.3345,61.3412,54.5291,18.2031,40.1715,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Imo,NG017,Imo,1,0.0588,13.0120,45.1687,14.2165,4.6209,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Imo,NG017,Imo,1,0.0360,8.4986,42.4068,7.9090,1.6527,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Imo,NG017,Imo,1,0.0496,11.4691,43.2527,6.9193,3.1791,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Imo,NG017,Imo,1,0.0183,4.6123,39.6540,7.7227,0.2865,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Jigawa,NG018,Jigawa,1,0.4382,76.5796,57.2244,11.3587,50.7973,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Jigawa,NG018,Jigawa,1,0.4200,73.6001,57.0676,11.0113,46.0435,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Jigawa,NG018,Jigawa,1,0.3837,67.0644,57.2143,16.6202,42.2787,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Jigawa,NG018,Jigawa,1,0.4377,74.7774,58.5301,14.4265,51.9815,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kaduna,NG019,Kaduna,1,0.2161,41.5857,51.9741,20.0730,24.6116,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kaduna,NG019,Kaduna,1,0.1880,39.0666,48.1209,16.2510,15.6126,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kaduna,NG019,Kaduna,1,0.2569,46.7992,54.8951,11.8307,27.7280,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kaduna,NG019,Kaduna,1,0.1671,34.0943,49.0019,16.4337,14.6989,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kano,NG020,Kano,1,0.2830,53.8299,52.5677,16.5847,28.9570,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kano,NG020,Kano,1,0.2880,53.4301,53.9083,14.9118,29.3613,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kano,NG020,Kano,1,0.2818,51.3817,54.8457,15.8733,29.9135,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kano,NG020,Kano,1,0.2497,45.0612,55.4098,14.5068,26.7308,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Katsina,NG021,Katsina,1,0.4163,70.5794,58.9870,13.3030,49.8900,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Katsina,NG021,Katsina,1,0.3471,63.8313,54.3735,14.7736,36.8054,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Katsina,NG021,Katsina,1,0.3100,56.9794,54.4097,19.7483,30.8172,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Katsina,NG021,Katsina,1,0.3331,61.1319,54.4864,17.4986,35.1948,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kebbi,NG022,Kebbi,1,0.4490,78.2384,57.3840,8.3433,52.2037,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kebbi,NG022,Kebbi,1,0.3577,65.0356,55.0050,16.0663,37.4351,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kebbi,NG022,Kebbi,1,0.5087,80.8848,62.8973,8.8578,59.9343,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kebbi,NG022,Kebbi,1,0.4373,73.7863,59.2602,9.8097,52.7493,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kogi,NG023,Kogi,1,0.0755,17.2181,43.8605,22.6703,4.9357,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kogi,NG023,Kogi,1,0.0800,17.9910,44.4497,28.5308,5.2135,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kogi,NG023,Kogi,1,0.1227,25.0101,49.0781,19.8327,12.0599,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kogi,NG023,Kogi,1,0.0638,14.0219,45.4947,23.3145,5.6812,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kwara,NG024,Kwara,1,0.0666,15.4146,43.2257,11.5266,4.7217,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kwara,NG024,Kwara,1,0.1104,23.5877,46.8008,15.3166,9.5091,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kwara,NG024,Kwara,1,0.1817,33.7095,53.9132,7.1029,20.1841,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Kwara,NG024,Kwara,1,0.0962,20.1560,47.7497,14.7976,8.1368,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Lagos,NG025,Lagos,1,0.0234,5.6529,41.3611,3.6030,1.0124,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Lagos,NG025,Lagos,1,0.0155,3.9316,39.4098,2.2156,0.3197,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Lagos,NG025,Lagos,1,0.0174,4.4952,38.6129,2.1592,0.1567,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Lagos,NG025,Lagos,1,0.0044,1.1054,39.4491,1.5253,0.2073,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Nasarawa,NG026,Nasarawa,1,0.1724,37.4763,45.9929,31.1892,12.7991,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Nasarawa,NG026,Nasarawa,1,0.1951,38.9368,50.1172,29.5229,18.5225,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Nasarawa,NG026,Nasarawa,1,0.1127,23.6628,47.6433,20.3027,10.6099,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Nasarawa,NG026,Nasarawa,1,0.1888,40.5830,46.5126,23.9902,15.7076,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Niger,NG027,Niger,1,0.2577,49.5393,52.0100,17.8201,28.4513,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Niger,NG027,Niger,1,0.2860,53.1826,53.7758,13.1150,28.9288,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Niger,NG027,Niger,1,0.3137,58.3304,53.7778,10.8322,35.0671,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Niger,NG027,Niger,1,0.2191,44.5601,49.1694,17.7555,22.7942,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ogun,NG028,Ogun,1,0.0764,17.5015,43.6488,16.8356,5.1885,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ogun,NG028,Ogun,1,0.0480,10.8424,44.2901,11.4165,3.2537,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ogun,NG028,Ogun,1,0.0289,7.3337,39.4165,9.8408,0.8947,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ogun,NG028,Ogun,1,0.0918,19.9482,46.0279,23.5266,6.9381,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ondo,NG029,Ondo,1,0.0912,20.3033,44.8973,19.2893,7.5345,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ondo,NG029,Ondo,1,0.0660,14.9338,44.2146,20.2106,4.7056,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ondo,NG029,Ondo,1,0.0503,11.4728,43.8477,27.9670,3.8516,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Ondo,NG029,Ondo,1,0.0637,14.4482,44.0736,32.4008,4.2120,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Osun,NG030,Osun,1,0.0276,6.5183,42.3102,10.3491,1.9666,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Osun,NG030,Osun,1,0.0448,10.9564,40.8662,13.3641,2.0602,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Osun,NG030,Osun,1,0.0542,13.2620,40.8738,17.2580,2.8685,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Osun,NG030,Osun,1,0.0315,7.5201,41.8408,13.0035,1.6488,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Oyo,NG031,Oyo,1,0.1126,22.4142,50.2184,9.2842,11.3863,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Oyo,NG031,Oyo,1,0.0981,19.6789,49.8680,11.9133,9.0257,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Oyo,NG031,Oyo,1,0.0533,11.5809,46.0383,9.9888,3.8554,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Oyo,NG031,Oyo,1,0.0809,17.3758,46.5440,11.0101,6.3096,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Plateau,NG032,Plateau,1,0.2251,46.4732,48.4321,25.9290,22.5199,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Plateau,NG032,Plateau,1,0.1805,36.5544,49.3781,28.7204,16.2515,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Plateau,NG032,Plateau,1,0.1571,31.1863,50.3662,32.3117,14.7390,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Plateau,NG032,Plateau,1,0.1945,42.4669,45.7951,30.4358,16.2632,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Rivers,NG033,Rivers,1,0.0630,14.7927,42.6146,17.2255,4.7446,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Rivers,NG033,Rivers,1,0.0280,6.5670,42.6911,12.3010,2.1322,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Rivers,NG033,Rivers,1,0.0347,8.2405,42.0910,13.1288,1.6103,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Rivers,NG033,Rivers,1,0.0351,8.3898,41.8616,10.6661,1.3755,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Sokoto,NG034,Sokoto,1,0.4493,76.2357,58.9356,9.9965,51.9584,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Sokoto,NG034,Sokoto,1,0.3655,70.6022,51.7670,14.6326,35.1677,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Sokoto,NG034,Sokoto,1,0.4777,80.2868,59.5011,8.3843,59.0824,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Sokoto,NG034,Sokoto,1,0.4372,70.7390,61.8037,11.9548,51.4020,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Taraba,NG035,Taraba,1,0.3430,63.9744,53.6123,21.9415,39.4180,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Taraba,NG035,Taraba,1,0.2646,54.1424,48.8633,25.1881,26.0397,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Taraba,NG035,Taraba,1,0.2639,51.4244,51.3141,28.6989,25.1402,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Taraba,NG035,Taraba,1,0.2702,56.7040,47.6506,26.0228,25.4282,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Yobe,NG036,Yobe,1,0.5422,85.4131,63.4746,4.1083,68.4843,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Yobe,NG036,Yobe,1,0.3634,65.5142,55.4681,16.0458,39.4196,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Yobe,NG036,Yobe,1,0.4545,77.2397,58.8371,10.5373,53.9730,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Yobe,NG036,Yobe,1,0.3428,63.0234,54.3901,17.5802,43.5571,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Zamfara,NG037,Zamfara,1,0.5083,80.5875,63.0792,10.2252,60.1963,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Zamfara,NG037,Zamfara,1,0.3926,68.6074,57.2290,14.2361,42.3062,2016-01-01 00:00:00+00:00,2017-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Zamfara,NG037,Zamfara,1,0.4071,69.6721,58.4255,11.3646,47.7098,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NGA,Y,Y,Zamfara,NG037,Zamfara,1,0.3913,71.8695,54.4413,10.6669,44.7360,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,,,,0,0.2208,41.7439,52.8910,13.5740,24.0680,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,,,,0,0.0745,16.4602,45.2576,13.3602,5.6079,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Boaco,NI50,Boaco,1,0.3385,61.0309,55.4602,13.2824,43.5287,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Boaco,NI50,Boaco,1,0.1251,28.0834,44.5330,15.0669,10.2919,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Carazo,NI75,Carazo,1,0.1485,31.2977,47.4513,15.7761,12.1774,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Carazo,NI75,Carazo,1,0.0208,5.5060,37.7555,8.2702,0.0907,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Chinandega,NI30,Chinandega,1,0.2313,47.1988,49.0154,15.7329,22.2563,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Chinandega,NI30,Chinandega,1,0.0382,9.7146,39.2857,15.0918,1.4183,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Chontales,NI65,Chontales,1,0.2558,48.4584,52.7893,12.3995,29.5912,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Chontales,NI65,Chontales,1,0.0792,18.5276,42.7644,17.1861,4.9154,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Esteli,NI25,Esteli,1,0.1920,40.7076,47.1771,19.3235,19.6345,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Esteli,NI25,Esteli,1,0.0409,10.2993,39.7246,12.6107,1.2107,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Granada,NI70,Granada,1,0.1410,30.2785,46.5787,15.5093,11.9845,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Granada,NI70,Granada,1,0.0340,8.1955,41.4529,8.7427,2.1613,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Jinotega,NI10,Jinotega,1,0.4797,79.5681,60.2923,7.5415,60.3987,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Jinotega,NI10,Jinotega,1,0.2102,43.7624,48.0415,19.8007,19.5428,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Leon,NI35,Leon,1,0.1554,34.2227,45.3991,17.2339,13.9123,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Leon,NI35,Leon,1,0.0387,9.0326,42.8087,8.8020,2.1062,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Madriz,NI20,Madriz,1,0.3631,66.6206,54.4991,13.7038,42.8374,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Madriz,NI20,Madriz,1,0.1136,26.0342,43.6417,21.8528,6.7319,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Managua,NI55,Managua,1,0.0438,10.5835,41.3714,11.9375,2.7841,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Managua,NI55,Managua,1,0.0165,3.7636,43.7465,6.8441,1.2680,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Masaya,NI60,Masaya,1,0.1227,28.4696,43.0870,13.5392,9.1619,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Masaya,NI60,Masaya,1,0.0192,4.8275,39.8670,8.1142,0.9492,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Matagalpa,NI40,Matagalpa,1,0.3291,59.2210,55.5646,14.4746,36.5953,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Matagalpa,NI40,Matagalpa,1,0.1025,22.8570,44.8614,17.0461,7.4092,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Nueva Segovia,NI05,Nueva Segovia,1,0.2937,54.7980,53.5915,17.8211,32.5397,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Nueva Segovia,NI05,Nueva Segovia,1,0.1229,26.6886,46.0552,15.4337,9.6410,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Raan,NI35,Leon,1,0.4140,70.9365,58.3613,11.0998,48.7880,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Raan,NI35,Leon,1,0.1722,35.4551,48.5776,21.9331,15.2221,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Raas,NI80,Rivas,1,0.3971,67.2718,59.0230,10.3734,49.6110,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Raas,NI80,Rivas,1,0.1503,32.0592,46.8934,22.4481,12.0714,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Rio San Juan,NI85,Rio San Juan,1,0.3826,70.3172,54.4054,10.0167,46.9783,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Rio San Juan,NI85,Rio San Juan,1,0.1313,28.9375,45.3846,23.8869,9.7098,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Rivas,NI80,Rivas,1,0.1906,40.6083,46.9326,19.1283,16.4942,2001-01-01 00:00:00+00:00,2001-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NIC,N,N,Rivas,NI80,Rivas,1,0.0296,7.7738,38.1082,10.7467,1.0168,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NPL,N,N,,,,0,0.2997,58.2651,51.4422,17.9196,31.2175,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NPL,N,N,,,,0,0.1855,39.1595,47.3778,16.1183,16.8434,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NPL,N,N,,,,0,0.1327,30.0524,44.1619,15.7622,10.5015,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NPL,N,N,,,,0,0.1114,25.7929,43.1849,17.8048,8.1766,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NPL,N,N,,,,0,0.0744,17.5129,42.5025,17.8479,4.8630,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NPL,N,N,,,,0,0.0678,16.3857,41.3611,15.4081,3.6432,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +NPL,N,N,Bagmati,NP03,Bagmati,1,0.0314,7.7319,40.6651,12.5515,1.4499,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +NPL,N,N,Gandaki,NP04,Gandaki,1,0.0459,11.4938,39.9076,13.8414,2.3810,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +NPL,N,N,Karnali,NP06,Karnali,1,0.1390,34.0203,40.8582,22.3217,7.0331,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +NPL,N,N,Koshi,NP01,Koshi,1,0.0704,16.9578,41.5019,21.3717,3.9879,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +NPL,N,N,Lumbini,NP05,Lumbini,1,0.0805,19.6883,40.8637,23.8517,4.2398,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +NPL,N,N,Madhesh,NP02,Madhesh,1,0.1489,32.3174,46.0822,23.9219,13.1407,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +NPL,N,N,Sudurpashchim,NP07,Sudur Paschim,1,0.0979,25.1674,38.9179,24.7516,4.3986,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PAK,N,Y,,,,0,0.2326,44.4759,52.2933,14.7489,25.5131,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,,,,0,0.1982,38.3321,51.7157,12.7993,21.4677,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Balochistan,PK2,Balochistan,1,0.4162,74.0979,56.1740,12.8298,47.4484,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Balochistan,PK2,Balochistan,1,0.3536,65.3192,54.1327,14.5561,40.9946,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Federally Administered Tribal Areas (FATA),,,1,0.3831,71.5157,53.5756,16.7679,45.7633,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PAK,N,Y,Islamabad (ICT),,,1,0.0383,8.2154,46.6332,8.3294,3.9018,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Islamabad (ICT),,,1,0.0464,10.6338,43.6175,7.5424,2.6661,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Khyber Pakhtunkhwa,PK5,Khyber Pakhtunkhwa,1,0.2416,48.3599,49.9623,20.4650,24.8636,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Khyber Pakhtunkhwa,PK5,Khyber Pakhtunkhwa,1,0.2579,50.6981,50.8777,16.6519,26.4699,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Punjab,PK6,Punjab,1,0.1865,37.1739,50.1690,16.1690,19.4494,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Punjab,PK6,Punjab,1,0.1234,25.1705,49.0313,13.3450,12.2174,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Sindh,PK7,Sindh,1,0.2987,53.3843,55.9615,8.6790,35.7578,2012-01-01 00:00:00+00:00,2013-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PAK,N,Y,Sindh,PK7,Sindh,1,0.2740,50.5373,54.2172,8.5410,32.1320,2017-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,,,,0,0.0524,12.5896,41.6279,12.4659,2.8517,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,,,,0,0.0288,7.2588,39.6113,9.4769,1.0725,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,,,,0,0.0285,7.1815,39.7326,10.3449,1.1918,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,,,,0,0.0249,6.3790,39.0439,10.2836,0.9185,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,,,,0,0.0245,6.2910,38.9038,10.0055,0.8669,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Amazonas,PE01,Amazonas,1,0.1229,28.8237,42.6369,27.3594,7.7332,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Amazonas,PE01,Amazonas,1,0.0876,22.0291,39.7679,20.6484,3.7126,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Amazonas,PE01,Amazonas,1,0.0773,19.2308,40.2204,21.6146,3.7347,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Amazonas,PE01,Amazonas,1,0.0678,16.8253,40.3082,21.7293,3.2741,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Amazonas,PE01,Amazonas,1,0.0678,16.5273,41.0115,19.9774,3.0631,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ancash,PE02,Ancash,1,0.0538,13.7120,39.2047,13.8854,1.5530,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ancash,PE02,Ancash,1,0.0442,11.5774,38.1495,11.3690,1.1464,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ancash,PE02,Ancash,1,0.0410,10.6290,38.5970,15.1118,1.5470,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ancash,PE02,Ancash,1,0.0242,6.4515,37.5372,11.4200,0.5085,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ancash,PE02,Ancash,1,0.0254,6.8921,36.9096,12.1191,0.6076,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Apurimac,PE03,Apurimac,1,0.1030,25.6624,40.1243,19.3509,4.2279,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Apurimac,PE03,Apurimac,1,0.0568,15.2719,37.1995,15.7926,1.3742,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Apurimac,PE03,Apurimac,1,0.0551,15.0173,36.7014,15.0608,0.6407,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Apurimac,PE03,Apurimac,1,0.0597,16.5922,36.0093,14.6360,0.7485,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Apurimac,PE03,Apurimac,1,0.0487,13.2296,36.7813,15.7020,1.2494,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Arequipa,PE04,Arequipa,1,0.0113,2.9485,38.3148,6.4698,0.0770,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Arequipa,PE04,Arequipa,1,0.0042,1.1366,36.6540,3.5150,0.0260,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Arequipa,PE04,Arequipa,1,0.0048,1.4003,34.3145,5.2060,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Arequipa,PE04,Arequipa,1,0.0036,0.9231,39.1148,9.8480,0.1320,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Arequipa,PE04,Arequipa,1,0.0041,1.1373,36.1526,6.1617,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ayacucho,PE05,Ayacucho,1,0.0878,22.4464,39.1082,17.7656,2.8871,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ayacucho,PE05,Ayacucho,1,0.0458,12.2837,37.3001,15.4591,1.1785,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ayacucho,PE05,Ayacucho,1,0.0442,11.8239,37.3676,16.2646,0.6559,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ayacucho,PE05,Ayacucho,1,0.0391,10.4794,37.2706,16.7430,1.0210,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ayacucho,PE05,Ayacucho,1,0.0383,10.2999,37.2018,16.0237,1.1666,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cajamarca,PE06,Cajamarca,1,0.1203,28.3192,42.4639,22.1948,6.9253,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cajamarca,PE06,Cajamarca,1,0.0820,20.9709,39.0955,16.6243,2.4694,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cajamarca,PE06,Cajamarca,1,0.0820,20.6508,39.7133,18.5958,3.0976,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cajamarca,PE06,Cajamarca,1,0.0649,17.1020,37.9361,19.2027,1.7469,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cajamarca,PE06,Cajamarca,1,0.0565,14.9594,37.7943,19.2112,1.1000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Callao,PE07,Callao,1,0.0027,0.5977,44.4444,2.1756,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Callao,PE07,Callao,1,0.0021,0.5838,36.6714,4.7369,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Callao,PE07,Callao,1,0.0007,0.1988,36.2899,5.8553,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Callao,PE07,Callao,1,0.0025,0.6039,42.0610,4.3511,0.0000,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Callao,PE07,Callao,1,0.0017,0.4980,35.0703,3.4569,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cusco,PE08,Cusco,1,0.0719,18.1535,39.5999,15.6661,3.3540,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cusco,PE08,Cusco,1,0.0334,8.7669,38.1001,15.0367,0.5317,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cusco,PE08,Cusco,1,0.0357,9.2757,38.4382,14.9744,1.0700,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cusco,PE08,Cusco,1,0.0239,6.6191,36.0683,15.3972,0.2174,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Cusco,PE08,Cusco,1,0.0297,7.9301,37.4340,14.7270,0.5494,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huancavelica,PE09,Huancavelica,1,0.1303,32.6154,39.9635,21.1124,5.7295,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huancavelica,PE09,Huancavelica,1,0.0817,21.0862,38.7296,19.2500,2.3563,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huancavelica,PE09,Huancavelica,1,0.0839,21.9321,38.2718,20.0519,2.5927,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huancavelica,PE09,Huancavelica,1,0.0682,17.7545,38.4278,20.2828,1.8870,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huancavelica,PE09,Huancavelica,1,0.0781,20.9858,37.1973,19.4320,1.4272,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huanuco,PE10,Huanuco,1,0.1230,28.6995,42.8460,19.5413,9.1499,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huanuco,PE10,Huanuco,1,0.0874,21.5984,40.4611,18.0066,3.8168,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huanuco,PE10,Huanuco,1,0.0702,17.0905,41.0810,17.5076,3.3832,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huanuco,PE10,Huanuco,1,0.0680,17.5503,38.7582,18.3966,2.4505,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Huanuco,PE10,Huanuco,1,0.0511,12.8095,39.8591,20.0465,1.9719,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ica,PE11,Ica,1,0.0122,3.1839,38.2806,7.6020,0.4076,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ica,PE11,Ica,1,0.0055,1.5892,34.7053,6.6887,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ica,PE11,Ica,1,0.0068,1.8509,36.7325,7.7888,0.1806,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ica,PE11,Ica,1,0.0055,1.4935,36.5844,6.9576,0.1707,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ica,PE11,Ica,1,0.0047,1.2763,36.5937,6.5293,0.0372,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Junin,PE12,Junin,1,0.0481,11.8437,40.6398,13.9913,1.8009,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Junin,PE12,Junin,1,0.0335,8.0830,41.3855,12.7156,1.3067,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Junin,PE12,Junin,1,0.0366,9.2736,39.4317,15.4292,1.3468,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Junin,PE12,Junin,1,0.0272,7.3947,36.8468,13.2316,0.3720,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Junin,PE12,Junin,1,0.0347,9.2032,37.6841,11.8120,0.3764,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,La Libertad,PE13,La Libertad,1,0.0624,14.2448,43.7860,14.9128,4.3880,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,La Libertad,PE13,La Libertad,1,0.0338,8.4537,39.9904,11.8435,1.6113,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,La Libertad,PE13,La Libertad,1,0.0351,8.7097,40.3289,12.3933,1.7135,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,La Libertad,PE13,La Libertad,1,0.0300,7.8443,38.2994,11.5870,1.0130,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,La Libertad,PE13,La Libertad,1,0.0340,8.7218,38.9572,10.3507,1.4460,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lambayeque,PE14,Lambayeque,1,0.0416,10.1615,40.9651,11.2648,1.7501,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lambayeque,PE14,Lambayeque,1,0.0201,4.9523,40.6853,10.0917,0.6287,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lambayeque,PE14,Lambayeque,1,0.0161,3.8701,41.7240,10.0755,1.0799,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lambayeque,PE14,Lambayeque,1,0.0182,4.8532,37.4368,8.8076,0.4532,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lambayeque,PE14,Lambayeque,1,0.0210,5.2851,39.6483,10.7642,1.1228,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lima,PE15,Lima,1,0.0048,1.2919,37.4688,3.8480,0.1175,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lima,PE15,Lima,1,0.0021,0.5698,36.4019,3.0257,0.0396,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lima,PE15,Lima,1,0.0031,0.8650,35.5823,3.9746,0.0044,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lima,PE15,Lima,1,0.0021,0.5745,37.0093,4.1554,0.0641,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Lima,PE15,Lima,1,0.0026,0.6930,36.9967,4.0101,0.0303,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Loreto,PE16,Loreto,1,0.1840,40.0901,45.8905,20.9058,17.5240,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Loreto,PE16,Loreto,1,0.1158,27.4285,42.2123,19.8670,7.7369,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Loreto,PE16,Loreto,1,0.1247,28.3825,43.9476,17.1446,9.8407,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Loreto,PE16,Loreto,1,0.1015,23.3325,43.5125,18.8804,7.4082,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Loreto,PE16,Loreto,1,0.1016,24.0132,42.3246,18.5864,7.3365,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Madre de Dios,PE17,Madre de Dios,1,0.0339,8.6174,39.3503,13.8145,1.2197,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Madre de Dios,PE17,Madre de Dios,1,0.0266,6.5664,40.4904,15.0139,0.8067,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Madre de Dios,PE17,Madre de Dios,1,0.0300,6.9730,43.0102,15.8235,1.5421,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Madre de Dios,PE17,Madre de Dios,1,0.0116,3.0378,38.2272,11.2106,0.1639,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Madre de Dios,PE17,Madre de Dios,1,0.0183,4.8155,38.0194,11.4896,0.1398,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Moquegua,PE18,Moquegua,1,0.0172,4.3646,39.3027,6.3009,0.6450,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Moquegua,PE18,Moquegua,1,0.0059,1.6398,36.0711,3.6948,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Moquegua,PE18,Moquegua,1,0.0063,1.7580,35.9760,6.4179,0.0759,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Moquegua,PE18,Moquegua,1,0.0062,1.7153,35.9177,5.1623,0.0542,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Moquegua,PE18,Moquegua,1,0.0034,0.9822,35.1196,3.1041,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Pasco,PE19,Pasco,1,0.0743,17.8080,41.7286,20.2882,4.5214,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Pasco,PE19,Pasco,1,0.0462,11.5494,39.9759,15.7448,1.8745,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Pasco,PE19,Pasco,1,0.0497,12.9549,38.3500,17.8918,1.0702,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Pasco,PE19,Pasco,1,0.0408,10.7420,37.9801,17.0764,1.3376,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Pasco,PE19,Pasco,1,0.0399,9.5634,41.7127,12.5426,2.9970,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Piura,PE20,Piura,1,0.0616,14.5943,42.2349,15.0552,3.1451,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Piura,PE20,Piura,1,0.0338,8.7364,38.6765,12.6318,0.7017,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Piura,PE20,Piura,1,0.0313,8.1812,38.2209,12.7878,1.1198,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Piura,PE20,Piura,1,0.0331,8.1111,40.7514,11.9685,1.5877,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Piura,PE20,Piura,1,0.0273,7.2399,37.7194,12.0268,0.6770,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Puno,PE21,Puno,1,0.0751,18.7875,39.9968,27.5974,2.2145,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Puno,PE21,Puno,1,0.0622,15.6235,39.8197,18.5940,1.7825,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Puno,PE21,Puno,1,0.0579,15.1226,38.2845,20.7107,0.7316,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Puno,PE21,Puno,1,0.0424,11.3333,37.4339,15.2060,0.3021,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Puno,PE21,Puno,1,0.0408,10.7757,37.8547,19.3547,0.4521,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,San Martin,PE22,San Martin,1,0.0742,18.0949,41.0319,18.1260,2.9141,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,San Martin,PE22,San Martin,1,0.0410,10.7820,37.9871,16.3093,1.3558,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,San Martin,PE22,San Martin,1,0.0477,12.0606,39.5815,17.2050,2.0899,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,San Martin,PE22,San Martin,1,0.0390,10.0077,38.9445,16.2147,1.7181,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,San Martin,PE22,San Martin,1,0.0282,7.2750,38.7590,11.8566,0.9544,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tacna,PE23,Tacna,1,0.0104,2.7630,37.4664,4.0737,0.0933,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tacna,PE23,Tacna,1,0.0038,1.0049,37.7711,3.5918,0.1333,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tacna,PE23,Tacna,1,0.0037,1.0491,34.9571,5.5572,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tacna,PE23,Tacna,1,0.0036,1.0196,35.1847,5.9982,0.0000,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tacna,PE23,Tacna,1,0.0035,1.0248,34.1184,5.0935,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tumbes,PE24,Tumbes,1,0.0146,4.0622,36.0434,9.8844,0.0333,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tumbes,PE24,Tumbes,1,0.0123,3.1945,38.5437,9.7739,0.3468,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tumbes,PE24,Tumbes,1,0.0133,3.4228,38.9383,9.9820,0.1828,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tumbes,PE24,Tumbes,1,0.0087,2.4034,36.3407,9.1330,0.0000,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Tumbes,PE24,Tumbes,1,0.0099,2.8012,35.3680,8.8982,0.1297,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ucayali,PE25,Ucayali,1,0.0809,17.9481,45.0887,15.7012,7.7215,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ucayali,PE25,Ucayali,1,0.0498,11.3645,43.8636,13.0794,3.4221,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ucayali,PE25,Ucayali,1,0.0485,11.7385,41.3325,15.0090,2.8505,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ucayali,PE25,Ucayali,1,0.0616,14.4282,42.6659,15.0237,4.0586,2021-01-01 00:00:00+00:00,2021-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PER,N,Y,Ucayali,PE25,Ucayali,1,0.0639,14.8169,43.1093,14.9476,4.4135,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,,,,0,0.0562,12.5728,44.6892,13.7554,3.8642,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,,,,0,0.0372,8.3692,44.4438,10.6338,2.5431,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,,,,0,0.0241,5.7558,41.8127,7.1109,1.2599,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,,,,0,0.0158,3.8867,40.6213,5.2430,0.6867,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,ARMM,PH19,Bangsamoro Autonomous Region In Muslim Mindanao (BARMM),1,0.2139,43.2148,49.5019,22.6814,21.9782,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,ARMM,PH19,Bangsamoro Autonomous Region In Muslim Mindanao (BARMM),1,0.1932,41.8020,46.2207,27.8102,14.8544,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,ARMM,PH19,Bangsamoro Autonomous Region In Muslim Mindanao (BARMM),1,0.0998,22.5457,44.2791,25.4147,7.0736,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,ARMM,PH19,Bangsamoro Autonomous Region In Muslim Mindanao (BARMM),1,0.0757,18.0143,42.0038,21.8227,3.8658,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Bicol,PH05,Region V (Bicol Region),1,0.0913,20.1556,45.3097,18.8978,6.1655,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Bicol,PH05,Region V (Bicol Region),1,0.0485,10.8709,44.6085,16.1429,3.4960,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Bicol,PH05,Region V (Bicol Region),1,0.0262,5.9532,44.0606,11.4121,1.7467,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Bicol,PH05,Region V (Bicol Region),1,0.0201,4.9360,40.7795,11.2230,0.8474,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cagayan Valley,PH02,Region II (Cagayan Valley),1,0.0394,8.7032,45.2697,9.9679,2.1320,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cagayan Valley,PH02,Region II (Cagayan Valley),1,0.0314,7.6479,41.0411,10.8577,1.6975,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cagayan Valley,PH02,Region II (Cagayan Valley),1,0.0144,3.4861,41.2037,6.2032,0.8876,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cagayan Valley,PH02,Region II (Cagayan Valley),1,0.0052,1.2956,40.2047,3.5301,0.3563,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Calabarzon,PH04,Region IV-A (Calabarzon),1,0.0222,5.6808,39.0168,7.1465,1.0199,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Calabarzon,PH04,Region IV-A (Calabarzon),1,0.0154,3.6062,42.8028,4.9971,0.8403,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Calabarzon,PH04,Region IV-A (Calabarzon),1,0.0150,3.9217,38.3422,2.4327,0.4688,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Calabarzon,PH04,Region IV-A (Calabarzon),1,0.0077,2.1489,35.8498,2.2877,0.0716,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Caraga,PH16,Region XIII (Caraga),1,0.0673,15.3130,43.9799,22.5603,3.4921,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Caraga,PH16,Region XIII (Caraga),1,0.0475,11.1368,42.6808,11.6256,2.2183,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Caraga,PH16,Region XIII (Caraga),1,0.0273,6.3133,43.2381,10.3305,1.2881,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Caraga,PH16,Region XIII (Caraga),1,0.0117,3.0305,38.5987,6.6456,0.4442,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Luzon,PH03,Region III (Central Luzon),1,0.0251,6.0901,41.2100,9.4849,1.0629,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Luzon,PH03,Region III (Central Luzon),1,0.0188,4.1296,45.5358,5.2200,1.6345,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Luzon,PH03,Region III (Central Luzon),1,0.0079,2.0148,39.3644,4.5727,0.2642,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Luzon,PH03,Region III (Central Luzon),1,0.0071,1.7400,40.5631,1.5840,0.3724,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Visayas,PH07,Region VII (Central Visayas),1,0.0627,14.2478,44.0315,17.8461,4.1640,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Visayas,PH07,Region VII (Central Visayas),1,0.0378,8.7995,43.0057,14.4413,1.9996,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Visayas,PH07,Region VII (Central Visayas),1,0.0215,5.4448,39.5775,7.4339,0.2635,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Central Visayas,PH07,Region VII (Central Visayas),1,0.0202,5.0114,40.2840,5.9155,0.7291,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cordillera Admin,PH14,Cordillera Administrative Region (CAR),1,0.0338,8.2437,41.0364,11.6961,1.2261,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cordillera Admin,PH14,Cordillera Administrative Region (CAR),1,0.0170,3.9997,42.5086,4.4010,0.8373,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cordillera Admin,PH14,Cordillera Administrative Region (CAR),1,0.0079,1.8793,41.9559,4.9166,0.4635,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Cordillera Admin,PH14,Cordillera Administrative Region (CAR),1,0.0040,1.0697,37.7039,3.1096,0.0445,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Davao,PH11,Region XI (Davao Region),1,0.0762,17.2649,44.1485,17.0482,5.0661,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Davao,PH11,Region XI (Davao Region),1,0.0565,12.4130,45.5384,13.7327,3.8190,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Davao,PH11,Region XI (Davao Region),1,0.0291,7.1192,40.8409,9.1836,1.1279,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Davao,PH11,Region XI (Davao Region),1,0.0153,3.7670,40.7237,4.9269,0.4718,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Eastern Visayas,PH08,Region VIII (Eastern Visayas),1,0.0934,21.1078,44.2592,20.3310,6.4269,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Eastern Visayas,PH08,Region VIII (Eastern Visayas),1,0.0340,8.1866,41.4901,13.7762,1.8106,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Eastern Visayas,PH08,Region VIII (Eastern Visayas),1,0.0241,6.1173,39.4372,8.2634,0.7609,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Eastern Visayas,PH08,Region VIII (Eastern Visayas),1,0.0199,5.0360,39.5000,5.7292,0.8007,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Ilocos,PH01,Region I (Ilocos Region),1,0.0160,3.8247,41.7514,10.2997,0.3216,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Ilocos,PH01,Region I (Ilocos Region),1,0.0132,3.2101,41.2315,8.5753,0.2771,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Ilocos,PH01,Region I (Ilocos Region),1,0.0119,2.8240,42.2700,3.4318,0.5411,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Ilocos,PH01,Region I (Ilocos Region),1,0.0112,2.7566,40.6718,2.1204,0.4855,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Mimaropa,PH17,Mimaropa Region,1,0.1117,22.9125,48.7496,22.0960,10.1876,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Mimaropa,PH17,Mimaropa Region,1,0.0703,15.0149,46.8523,16.4862,5.6703,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Mimaropa,PH17,Mimaropa Region,1,0.0439,9.8138,44.7066,10.6066,2.8497,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Mimaropa,PH17,Mimaropa Region,1,0.0278,6.1563,45.1851,8.2611,1.8420,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,National Capital,PH13,National Capital Region (NCR),1,0.0116,2.9049,40.0876,5.2840,0.3282,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,National Capital,PH13,National Capital Region (NCR),1,0.0103,2.6819,38.4716,2.6568,0.1511,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,National Capital,PH13,National Capital Region (NCR),1,0.0042,1.0978,38.3438,1.2103,0.1733,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,National Capital,PH13,National Capital Region (NCR),1,0.0033,0.9654,34.2714,1.9254,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Northern Mindanao,PH10,Region X (Northern Mindanao),1,0.0766,16.7400,45.7341,19.5162,6.5126,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Northern Mindanao,PH10,Region X (Northern Mindanao),1,0.0629,14.0999,44.5887,15.9909,4.2138,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Northern Mindanao,PH10,Region X (Northern Mindanao),1,0.0329,7.6595,43.0069,11.7622,2.0497,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Northern Mindanao,PH10,Region X (Northern Mindanao),1,0.0168,4.2644,39.4054,6.9011,0.4972,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Soccsksargen,PH12,Region XII (Soccsksargen),1,0.0891,20.1572,44.1951,22.2994,4.8428,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Soccsksargen,PH12,Region XII (Soccsksargen),1,0.0629,13.2802,47.3622,16.4803,6.0504,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Soccsksargen,PH12,Region XII (Soccsksargen),1,0.0610,13.8218,44.1403,10.8964,4.8008,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Soccsksargen,PH12,Region XII (Soccsksargen),1,0.0322,7.3319,43.8672,8.8999,2.2303,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Western Visayas,PH06,Region VI (Western Visayas),1,0.0698,15.8875,43.9175,16.4596,4.1500,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Western Visayas,PH06,Region VI (Western Visayas),1,0.0405,8.8775,45.6733,15.0057,3.4684,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Western Visayas,PH06,Region VI (Western Visayas),1,0.0366,8.9193,41.0002,9.9384,1.9157,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Western Visayas,PH06,Region VI (Western Visayas),1,0.0107,2.7500,38.9858,4.3651,0.3632,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Zamboanga Peninsula,PH09,Region IX (Zamboanga Peninsula),1,0.0744,16.8282,44.2379,20.2620,5.5463,2008-01-01 00:00:00+00:00,2008-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Zamboanga Peninsula,PH09,Region IX (Zamboanga Peninsula),1,0.0540,12.1608,44.3886,19.1429,3.8726,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Zamboanga Peninsula,PH09,Region IX (Zamboanga Peninsula),1,0.0489,11.8112,41.4383,15.3410,2.1043,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PHL,N,N,Zamboanga Peninsula,PH09,Region IX (Zamboanga Peninsula),1,0.0347,8.2380,42.0964,9.8236,1.8773,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PNG,N,N,,,,0,0.2633,56.6286,46.4943,25.2575,25.7871,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Autonomous Region of Bougainville,PG20,Autonomous Region of Bougainville,1,0.2025,45.7456,44.2678,38.8282,13.5901,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Central,PG03,Central Province,1,0.2133,46.3232,46.0388,25.6645,20.5002,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Chimbu,PG10,Chimbu (Simbu) Province,1,0.2348,53.5543,43.8507,18.5624,19.6955,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,East New Britain,PG18,East New Britain Province,1,0.1740,37.7872,46.0571,31.2956,15.2220,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,East Sepik,PG14,East Sepik Province,1,0.2909,63.5462,45.7854,27.2105,28.9833,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Eastern Highlands,PG11,Eastern Highlands Province,1,0.2643,54.4683,48.5245,29.0413,25.1712,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Enga,PG08,Enga Province,1,0.3426,68.7096,49.8679,18.7366,37.7370,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Gulf,PG02,Gulf Province,1,0.3513,70.3560,49.9260,21.6227,38.6229,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Hela,PG21,Hela Province,1,0.4513,87.0036,51.8665,10.7544,56.2380,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Jiwaka,PG22,Jiwaka Province,1,0.2546,56.6726,44.9264,30.3220,22.6810,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Madang,PG13,Madang Province,1,0.2988,65.3331,45.7298,28.0276,28.3339,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Manus,PG16,Manus Province,1,0.1058,25.7299,41.1215,45.4702,4.0883,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Milne Bay,PG05,Milne Bay Province,1,0.2275,50.8785,44.7166,37.8729,19.5038,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Morobe,PG12,Morobe Province,1,0.2029,44.8629,45.2211,22.0620,19.3937,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,National Capital District,PG04,National Capital District,1,0.0181,4.7190,38.2938,11.9824,0.2696,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,New Ireland,PG17,New Ireland Province,1,0.1883,43.5871,43.1977,39.8124,14.2635,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Northern (Oro),PG06,Northern (Oro) Province,1,0.3098,65.5643,47.2476,24.0297,31.5104,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Southern Highlands,PG07,Southern Highlands Province,1,0.3871,82.6552,46.8376,12.8734,44.3659,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,West New Britain,PG19,West New Britain Province,1,0.2218,50.6671,43.7757,28.0703,16.8059,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,West Sepik (Sandaun),PG15,West Sepik (Sandaun) Province,1,0.3571,72.8774,49.0009,19.4971,40.6475,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Western,PG01,Western Province,1,0.2496,54.8862,45.4778,29.0482,22.8356,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PNG,N,N,Western Highlands,PG09,Western Highlands Province,1,0.2096,49.5949,42.2559,29.4931,16.0269,2016-01-01 00:00:00+00:00,2018-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,,,,0,0.0188,4.5007,41.8788,7.1815,0.9739,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Alto Paraguay,PY17,Alto Paraguay,1,0.0634,15.9937,39.6454,14.2080,2.8101,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Alto Paraná,PY10,Alto Parana,1,0.0131,3.2420,40.4701,5.8328,0.6002,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Asunción,PY00,Asuncion,1,0.0008,0.2256,34.1544,2.0827,0.0095,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Boquerón,PY16,Boqueron,1,0.0797,17.2671,46.1783,7.2199,5.6299,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Caaguazú,PY05,Caaguazu,1,0.0196,4.9575,39.4472,9.3369,0.7377,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Central,PY11,Central,1,0.0021,0.5779,36.3738,3.3573,0.0902,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Itapúa,PY07,Itapua,1,0.0287,7.3378,39.0734,14.7295,0.6071,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,Resto,,,1,0.0353,8.0679,43.7858,9.7002,2.1251,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PRY,N,Y,San Pedro,PY02,San Pedro,1,0.0267,6.8116,39.1676,10.3098,1.3925,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +PSE,N,Y,,,,0,0.0039,1.1075,35.3896,2.1467,0.0279,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,,,,0,0.0029,0.8017,35.7876,1.2217,0.0707,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,,,,0,0.0019,0.5469,34.6861,0.8969,0.0065,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,Gaza Strip,PS02,Gaza Strip,1,0.0037,1.0433,35.0764,1.8427,0.0000,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,Gaza Strip,PS02,Gaza Strip,1,0.0034,0.9606,35.8650,1.9972,0.1085,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,Gaza Strip,PS02,Gaza Strip,1,0.0018,0.5099,34.8862,1.3056,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,West Bank,PS01,West Bank,1,0.0041,1.1496,35.5761,2.3463,0.0461,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,West Bank,PS01,West Bank,1,0.0025,0.6866,35.7092,0.6602,0.0434,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +PSE,N,Y,West Bank,PS01,West Bank,1,0.0020,0.5731,34.5600,0.6074,0.0111,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,,,,0,0.3380,66.8119,50.5906,20.2395,34.0761,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,,,,0,0.2817,57.5165,48.9793,23.6532,26.2404,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,,,,0,0.2310,48.8224,47.3147,22.6947,19.7012,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,East,RW5,Eastern Province,1,0.3594,71.3180,50.3929,18.8829,35.7238,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,East,RW5,Eastern Province,1,0.3012,61.0547,49.3403,22.8680,28.7573,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,East,RW5,Eastern Province,1,0.2316,49.5503,46.7476,23.4899,19.4236,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,Kigali City,RW1,Kigali City,1,0.1444,31.8383,45.3403,19.8559,10.6057,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,Kigali City,RW1,Kigali City,1,0.1179,26.1619,45.0763,22.3198,7.8321,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,Kigali City,RW1,Kigali City,1,0.0998,22.3907,44.5523,14.8398,7.0902,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,North,RW4,Northern Province,1,0.3460,68.5964,50.4416,23.1725,33.7216,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,North,RW4,Northern Province,1,0.2580,54.3065,47.5147,27.8262,22.2963,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,North,RW4,Northern Province,1,0.2635,55.6239,47.3725,22.7577,22.9313,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,South,RW2,Southern Province,1,0.3526,69.2107,50.9468,20.3406,36.3855,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,South,RW2,Southern Province,1,0.3236,64.8389,49.9048,21.5402,32.1840,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,South,RW2,Southern Province,1,0.2505,53.0703,47.2104,24.7982,21.8421,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,West,RW3,Western Province,1,0.3754,72.9241,51.4756,19.6049,39.9290,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,West,RW3,Western Province,1,0.3118,63.2846,49.2659,24.4239,28.8730,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +RWA,N,Y,West,RW3,Western Province,1,0.2637,54.2322,48.6272,24.1017,22.9205,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SDN,Y,Y,,,,0,0.3166,57.0012,55.5476,16.2972,35.9205,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SDN,Y,Y,,,,0,0.2794,52.3280,53.4015,17.6605,30.8783,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SDN,Y,Y,Al Jazirah,SD15,Aj Jazirah,1,0.1671,34.7602,48.0697,21.9695,15.4247,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Al Qadarif,,,1,0.3875,70.1923,55.2090,16.5025,47.7124,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Blue Nile,SD08,Blue Nile,1,0.3712,70.6150,52.5627,15.5508,40.9450,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Central Darfur,SD06,Central Darfur,1,0.4917,83.8190,58.6648,11.5181,62.8671,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,East Darfur,SD05,East Darfur,1,0.4501,76.5857,58.7704,16.9802,54.0586,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Kassala,SD11,Kassala,1,0.3606,65.4913,55.0657,13.6131,42.3460,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Khartoum,SD01,Khartoum,1,0.0711,16.2290,43.7966,16.4974,5.2910,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,North Darfur,SD02,North Darfur,1,0.4437,83.7289,52.9882,10.8045,51.2219,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,North Kurdufan,SD13,North Kordofan,1,0.3341,63.0945,52.9598,19.8490,37.1830,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Northern,SD17,Northern,1,0.0338,8.1040,41.6830,20.3793,2.1372,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Red Sea,SD10,Red Sea,1,0.2274,44.3485,51.2821,21.7865,25.9599,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,River Nile,SD16,River Nile,1,0.0863,18.3503,47.0476,20.1134,6.9112,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,Sinnar,SD14,Sennar,1,0.2708,51.2950,52.7958,17.1371,29.5549,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,South Darfur,SD03,South Darfur,1,0.3991,72.1510,55.3197,17.9735,44.5383,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,South Kurdufan,SD07,South Kordofan,1,0.4069,70.1564,57.9981,20.7951,46.0866,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,West Darfur,SD04,West Darfur,1,0.4523,78.3468,57.7295,12.1213,54.3088,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,West Kurdufan,SD18,West Kordofan,1,0.4684,81.4115,57.5385,12.8772,55.4175,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SDN,Y,Y,White Nile,SD09,White Nile,1,0.2569,51.5504,49.8284,23.1703,25.1578,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SEN,N,N,,,,0,0.3813,64.2419,59.3465,9.1420,45.5354,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,,,,0,0.2819,52.3641,53.8378,16.4181,31.7953,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,,,,0,0.2595,50.2987,51.5926,18.0590,27.0068,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Dakar,SN01,Dakar,1,0.0845,19.7632,42.7790,14.6343,6.6735,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Dakar,SN01,Dakar,1,0.0505,11.6679,43.2996,18.8937,3.3724,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Dakar,SN01,Dakar,1,0.0833,18.2463,45.6607,17.5380,5.2029,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Diourbel,SN02,Diourbel,1,0.5114,85.8320,59.5826,5.1323,60.4850,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Diourbel,SN02,Diourbel,1,0.4054,78.1613,51.8707,12.2658,42.9881,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Diourbel,SN02,Diourbel,1,0.3588,71.0842,50.4802,21.0359,38.4173,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Fatick,SN03,Fatick,1,0.5335,86.7194,61.5176,6.6448,67.1657,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Fatick,SN03,Fatick,1,0.2820,56.4013,49.9997,20.2385,28.9592,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Fatick,SN03,Fatick,1,0.2815,55.6261,50.6135,19.2377,31.1078,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Kaffrine,SN04,Kaffrine,1,0.5021,85.6701,58.6077,7.8735,66.2258,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SEN,N,N,Kaolack,SN05,Kaolack,1,0.5174,78.5347,65.8846,4.2448,64.3316,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Kaolack,SN05,Kaolack,1,0.4164,72.0860,57.7650,13.2326,51.7144,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Kaolack,SN05,Kaolack,1,0.3753,70.0777,53.5530,13.9718,41.3670,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Kolda,SN07,Kolda,1,0.5548,87.0971,63.6937,6.1626,71.3196,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Kolda,SN07,Kolda,1,0.4680,79.4933,58.8777,10.8689,56.9056,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Kolda,SN07,Kolda,1,0.3862,69.6322,55.4659,13.5823,45.7131,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Kédougou,SN06,Kedougou,1,0.2872,58.7477,48.8799,19.7515,29.4410,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SEN,N,N,Louga,SN08,Louga,1,0.5028,84.8630,59.2485,4.2229,62.7228,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Louga,SN08,Louga,1,0.3755,70.7538,53.0670,16.7054,42.7524,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Louga,SN08,Louga,1,0.2974,57.8280,51.4197,21.1470,28.2169,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Matam,SN09,Matam,1,0.5330,86.3991,61.6956,7.2899,64.3683,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Matam,SN09,Matam,1,0.4176,75.3165,55.4413,15.5512,47.7888,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Matam,SN09,Matam,1,0.3566,68.1628,52.3230,20.0373,39.5793,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Saint-Louis,SN10,Saint-Louis,1,0.4171,70.0189,59.5709,9.9680,52.2592,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Saint-Louis,SN10,Saint-Louis,1,0.2841,51.5498,55.1211,17.4258,35.7349,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Saint-Louis,SN10,Saint-Louis,1,0.2729,50.6010,53.9231,16.9482,30.8052,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Sédhiou,SN11,Sedhiou,1,0.3884,70.1752,55.3512,16.1434,44.0258,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SEN,N,N,Tambacounda,SN12,Tambacounda,1,0.5827,89.7322,64.9331,5.4698,73.2457,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Tambacounda,SN12,Tambacounda,1,0.4901,80.7994,60.6521,9.5657,63.1586,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Tambacounda,SN12,Tambacounda,1,0.3389,60.1384,56.3471,18.2905,40.4201,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Thiès,SN13,Thies,1,0.3139,57.8971,54.2139,11.7326,35.5996,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Thiès,SN13,Thies,1,0.2231,45.9017,48.6133,20.1843,21.7951,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Thiès,SN13,Thies,1,0.2017,42.1947,47.7916,18.3995,17.1758,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Ziguinchor,SN14,Ziguinchor,1,0.3149,63.3793,49.6922,15.4416,29.0822,2005-01-01 00:00:00+00:00,2005-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Ziguinchor,SN14,Ziguinchor,1,0.1642,36.7560,44.6791,25.3076,14.2008,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SEN,N,N,Ziguinchor,SN14,Ziguinchor,1,0.1100,25.2768,43.5099,26.0829,8.2739,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,,,,0,0.4091,74.0526,55.2469,14.4840,47.2723,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,,,,0,0.2967,57.9264,51.2266,19.6532,30.4160,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,,,,0,0.2724,55.2193,49.3315,22.5237,26.2913,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Bo,,,1,0.2895,58.9241,49.1255,18.8023,25.8367,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Bombali,,,1,0.2904,59.2633,49.0073,23.7354,22.6132,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Bonthe,,,1,0.3747,71.4981,52.4021,12.4896,39.1082,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Eastern,SL01,Eastern,1,0.4415,78.1451,56.5030,13.7363,53.1954,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Eastern,SL01,Eastern,1,0.3157,61.8853,51.0096,21.0394,31.6152,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Eastern,SL01,Eastern,1,0.2894,60.0013,48.2355,23.7802,27.9326,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Falaba,,,1,0.4620,84.6302,54.5906,9.4489,49.0166,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Kailahun,,,1,0.3185,68.0051,46.8403,23.4272,28.9567,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Kambia,,,1,0.3551,69.8458,50.8377,19.3097,34.5910,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Karene,,,1,0.4043,77.9157,51.8887,16.7052,46.5437,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Kenema,,,1,0.3166,63.4053,49.9284,19.2306,31.2194,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Koinadugu,,,1,0.3086,60.7831,50.7687,20.7203,31.0610,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Kono,,,1,0.2853,60.3727,47.2547,28.0139,26.1898,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Moyamba,,,1,0.3885,73.8573,52.5987,17.3729,42.0770,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Northern,SL02,Northern,1,0.4606,81.4784,56.5289,12.2604,54.2769,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Northern,SL02,Northern,1,0.3675,69.1849,53.1171,17.3636,40.7213,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Northern,SL02,Northern,1,0.3253,63.9741,50.8532,22.2514,32.9127,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Port Loko,,,1,0.3496,67.8470,51.5225,18.2076,36.7065,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Pujehun,,,1,0.4226,80.5825,52.4401,10.9847,46.8124,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Southern,SL03,Southern,1,0.4514,81.8213,55.1644,11.7914,52.3592,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Southern,SL03,Southern,1,0.3569,68.5638,52.0573,16.7464,38.1811,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Southern,SL03,Southern,1,0.3320,64.6550,51.3430,16.6122,34.0516,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Tonkolili,,,1,0.3706,73.1938,50.6381,21.1579,39.0482,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Western,SL04,Western,1,0.1659,37.4245,44.3188,25.2764,12.9049,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Western,SL04,Western,1,0.1264,29.0031,43.5747,24.0268,7.9672,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Western,SL04,Western,1,0.1022,25.3252,40.3611,27.4864,5.2250,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SLE,N,N,Western Area Rural,,,1,0.1742,41.1395,42.3488,27.1696,11.2037,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLE,N,N,Western Area Urban,,,1,0.0792,20.1752,39.2404,27.8894,3.5295,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,,,,0,0.0325,7.8609,41.2962,9.8907,1.6646,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Ahuachapán,SV01,Ahuachapan,1,0.0345,8.5842,40.2276,14.4685,1.2921,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Cabañas,SV02,Cabanas,1,0.0596,15.5028,38.4242,12.9606,2.2176,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Chalatenango,SV03,Chalatenango,1,0.0427,10.5141,40.6084,13.1790,2.2990,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Cuscatlán,SV04,Cuscatlan,1,0.0328,7.6045,43.1042,10.0979,1.8478,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,La Libertad,SV05,La Libertad,1,0.0214,5.0595,42.3878,6.6326,1.3167,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,La Paz,SV06,La Paz,1,0.0379,9.0107,42.0279,12.2422,2.2435,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,La Unión,SV07,La Union,1,0.0669,15.7324,42.5041,15.7367,4.3526,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Morazán,SV08,Morazan,1,0.0384,9.9906,38.4847,13.8547,1.1555,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,San Miguel,SV09,San Miguel,1,0.0412,9.8265,41.9292,11.8994,2.5801,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,San Salvador,SV10,San Salvador,1,0.0132,3.2954,40.1394,5.3313,0.5572,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,San Vicente,SV11,San Vicente,1,0.0264,6.8093,38.8366,10.2398,0.6020,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Santa Ana,SV12,Santa Ana,1,0.0301,6.9608,43.2412,9.2268,1.6299,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Sonsonate,SV13,Sonsonate,1,0.0593,13.5793,43.6568,11.8183,3.6401,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SLV,Y,Y,Usulután,SV14,Usulutan,1,0.0363,9.3866,38.6406,14.5964,1.2198,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SRB,N,N,,,,0,0.0008,0.1767,42.6481,4.1917,0.0532,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,,,,0,0.0014,0.3208,42.5212,3.4172,0.1050,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,,,,0,0.0004,0.1137,38.1015,2.0990,0.0077,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Belgrade,,,1,0.0015,0.3325,43.9904,1.2941,0.0925,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Belgrade,,,1,0.0000,0.0071,33.3333,0.8377,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Belgrade,,,1,0.0002,0.0454,33.3333,1.0565,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Southern & Eastern Serbia,,,1,0.0008,0.2139,37.0141,4.9453,0.0326,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Southern & Eastern Serbia,,,1,0.0013,0.3484,37.2860,4.0258,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Southern & Eastern Serbia,,,1,0.0003,0.0617,44.4444,2.8749,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Sumadija & Western Serbia,,,1,0.0002,0.0671,33.3333,6.8598,0.0000,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Sumadija & Western Serbia,,,1,0.0005,0.1611,33.3333,5.2879,0.0000,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Sumadija & Western Serbia,,,1,0.0010,0.2627,36.2693,2.4878,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Vojvodina,,,1,0.0007,0.1365,53.4442,2.8859,0.0988,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Vojvodina,,,1,0.0033,0.7118,46.9746,3.0230,0.3890,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SRB,N,N,Vojvodina,,,1,0.0002,0.0533,44.5404,1.8749,0.0271,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,,,,0,0.1848,40.7329,45.3677,20.7922,14.0839,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,,,,0,0.0863,20.9029,41.2831,19.2195,3.8669,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,,,,0,0.0476,11.6258,40.9605,16.7135,2.0830,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Distrito de Mé-Zóchi,,,1,0.0395,9.9622,39.6016,16.1960,0.8232,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +STP,N,N,Distrito de Água Grande,,,1,0.0349,8.2975,42.0216,14.0129,2.1332,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +STP,N,N,Região Autónoma do Príncipe,,,1,0.1590,37.6439,42.2324,21.7643,7.2562,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Autónoma do Príncipe,,,1,0.0668,15.5951,42.8103,22.5817,3.3822,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Autónoma do Príncipe,,,1,0.0465,11.5267,40.3774,21.1648,1.7502,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Centro Oeste,,,1,0.1481,32.7457,45.2228,20.6091,11.4728,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Centro Oeste,,,1,0.0644,15.8771,40.5702,16.7967,2.5253,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Centro Oeste,,,1,0.0367,8.9801,40.8899,14.6116,1.5960,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Norte Oeste,,,1,0.2273,51.1663,44.4232,21.9702,16.8815,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Norte Oeste,,,1,0.1341,31.7351,42.2540,24.4661,6.8848,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Norte Oeste,,,1,0.0614,14.7328,41.6498,18.4942,2.5553,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Sul Oeste,,,1,0.2753,57.6814,47.7291,19.3563,22.6817,2008-01-01 00:00:00+00:00,2009-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Sul Oeste,,,1,0.1336,32.2576,41.4191,22.8045,6.4096,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +STP,N,N,Região Sul Oeste,,,1,0.0701,17.3891,40.2905,21.1264,3.3890,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,,,,0,0.0589,12.7359,46.2467,4.1111,4.2034,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,,,,0,0.0411,9.5017,43.2451,4.4835,2.5299,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,,,,0,0.0257,6.6657,38.6091,3.0339,0.9121,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Brokopondo,SR01,Brokopondo,1,0.0198,5.3172,37.2524,16.1185,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Brokopondo & Sipaliwini,,,1,0.3277,61.3989,53.3729,13.7284,31.1819,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Brokopondo & Sipaliwini,,,1,0.2204,45.7911,48.1403,20.0435,17.7436,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Brokopondo & Sipaliwini,,,1,0.0935,22.3516,41.8155,16.7764,4.8223,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Commewijne,SR02,Commewijne,1,0.0047,1.2061,39.3212,2.6231,0.2323,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Commewijne & Marowijne,,,1,0.0239,6.3489,37.5985,4.0285,0.4902,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Commewijne & Marowijne,,,1,0.0324,8.1847,39.6446,8.5118,1.3483,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Commewijne & Marowijne,,,1,0.0254,6.6310,38.3710,4.6556,1.1605,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Coronie,SR03,Coronie,1,0.0000,0.0000,,0.5600,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Marowijne,SR04,Marowijne,1,0.0173,4.6403,37.3167,12.0026,0.4535,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Nickerie,SR05,Nickerie,1,0.0024,0.7067,34.1575,2.5771,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,"Nickerie, Coronie & Saramacca",,,1,0.0340,8.4601,40.1436,4.2691,1.4806,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,"Nickerie, Coronie & Saramacca",,,1,0.0211,5.4798,38.5378,2.5948,0.7788,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,"Nickerie, Coronie & Saramacca",,,1,0.0158,4.2975,36.7388,1.9614,0.2615,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Para,SR06,Para,1,0.0281,6.9145,40.5744,6.7847,1.4427,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Paramaribo,SR07,Paramaribo,1,0.0220,5.7716,38.1576,2.0070,0.7937,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Paramaribo,SR07,Paramaribo,1,0.0143,3.8201,37.5493,1.1785,0.4741,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Paramaribo,SR07,Paramaribo,1,0.0193,5.2307,36.8152,1.0158,0.4180,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Saramacca,SR08,Saramacca,1,0.0088,2.2926,38.5407,3.1571,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Sipaliwini,SR09,Sipaliwini,1,0.1237,31.1888,39.6753,20.4745,3.4574,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Wanica,SR10,Wanica,1,0.0020,0.4803,40.6072,1.6800,0.1136,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +SUR,N,N,Wanica & Para,,,1,0.0355,8.9515,39.6281,3.7534,1.4866,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Wanica & Para,,,1,0.0305,7.7490,39.3057,3.8968,1.3760,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SUR,N,N,Wanica & Para,,,1,0.0193,5.1187,37.7639,1.7042,0.6234,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,,,,0,0.1843,38.7124,47.6126,28.8476,15.8652,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,,,,0,0.1000,22.2963,44.8714,27.5932,6.9459,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,,,,0,0.0627,14.5126,43.1736,23.9785,3.5952,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,,,,0,0.0330,7.9847,41.2935,19.0388,1.3461,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Hhohho,SZ1,Hhohho,1,0.1607,33.5417,47.9164,29.6212,14.1678,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Hhohho,SZ1,Hhohho,1,0.0713,16.6170,42.9315,25.7683,4.1465,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Hhohho,SZ1,Hhohho,1,0.0547,12.8489,42.5784,21.6042,2.4179,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Hhohho,SZ1,Hhohho,1,0.0297,7.5466,39.3989,15.4752,0.7406,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Lubombo,SZ4,Lubombo,1,0.2235,45.5534,49.0677,26.0576,20.7556,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Lubombo,SZ4,Lubombo,1,0.1430,31.8196,44.9345,25.7450,9.9116,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Lubombo,SZ4,Lubombo,1,0.0950,21.6168,43.9338,23.1973,6.4877,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Lubombo,SZ4,Lubombo,1,0.0439,9.9168,44.2372,24.0453,2.7700,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Manzini,SZ2,Manzini,1,0.1356,29.7069,45.6425,30.4343,9.1221,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Manzini,SZ2,Manzini,1,0.0683,14.7516,46.3098,24.3731,5.3513,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Manzini,SZ2,Manzini,1,0.0360,8.5098,42.3182,23.3359,1.7826,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Manzini,SZ2,Manzini,1,0.0279,6.8490,40.7685,15.2707,0.8895,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Shiselweni,SZ3,Shiselweni,1,0.2419,50.6014,47.8087,28.2450,22.5356,2006-01-01 00:00:00+00:00,2007-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Shiselweni,SZ3,Shiselweni,1,0.1357,30.0744,45.1317,35.1992,9.5767,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Shiselweni,SZ3,Shiselweni,1,0.0919,21.1169,43.5083,29.4501,5.6892,2014-01-01 00:00:00+00:00,2014-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SWZ,N,N,Shiselweni,SZ3,Shiselweni,1,0.0343,8.4073,40.8249,25.5261,1.4788,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +SYC,N,N,,,,0,0.0030,0.8658,34.2297,0.4053,0.0277,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TCD,Y,Y,,,,0,0.5951,89.7834,66.2788,6.2636,73.8991,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,,,,0,0.5781,89.3636,64.6878,7.2417,70.7625,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,,,,0,0.5538,87.1166,63.5682,8.6034,68.6937,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Barh El Gazal,TCD19,Barh El Gazel,1,0.6519,98.0124,66.5148,1.1539,84.8330,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Barh El Gazal,TCD19,Barh El Gazel,1,0.6614,97.8433,67.5962,2.1567,86.6293,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Barh El Gazal,TCD19,Barh El Gazel,1,0.6442,94.5479,68.1395,3.4719,85.3969,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Batha,TCD01,Batha,1,0.6823,96.7453,70.5249,2.3784,85.2157,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Batha,TCD01,Batha,1,0.6691,96.3595,69.4344,2.7325,89.4543,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Batha,TCD01,Batha,1,0.6815,95.5801,71.2998,2.5378,88.2764,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Borkou,TCD02,Borkou,1,0.5717,92.3398,61.9144,4.4843,75.0198,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TCD,Y,Y,Borkou-Ennedi-Tibesti,,,1,0.6275,94.8934,66.1235,4.1477,81.6246,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Borkou-Ennedi-Tibesti,,,1,0.6013,94.0230,63.9479,4.8442,78.6321,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Borkou-Ennedi-Tibesti,,,1,0.6167,94.3990,65.3302,3.8530,80.8599,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Chari Baguirmi,TCD03,Chari Baguirmi,1,0.6665,95.5386,69.7671,3.3311,82.3684,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Chari Baguirmi,TCD03,Chari Baguirmi,1,0.6634,98.4365,67.3972,1.4569,85.0018,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Chari Baguirmi,TCD03,Chari Baguirmi,1,0.6222,95.2006,65.3540,3.7981,80.7856,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Ennedi Est,TCD20,Ennedi Est,1,0.6598,98.1242,67.2363,1.3408,90.3886,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TCD,Y,Y,Ennedi Ouest,TCD23,Ennedi Ouest,1,0.6024,93.4347,64.4693,4.5971,80.6354,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TCD,Y,Y,Guéra,TCD04,Guera,1,0.6821,96.8163,70.4546,2.8528,87.1484,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Guéra,TCD04,Guera,1,0.6560,95.1255,68.9589,4.0402,81.7836,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Guéra,TCD04,Guera,1,0.5972,90.8320,65.7497,6.6709,75.5582,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Hadjer-Lamis,TCD05,Hadjer Lamis,1,0.7175,98.4525,72.8752,1.1011,89.5951,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Hadjer-Lamis,TCD05,Hadjer Lamis,1,0.6642,97.0585,68.4281,2.3870,85.5752,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Hadjer-Lamis,TCD05,Hadjer Lamis,1,0.6614,96.1248,68.8031,2.5839,86.3399,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Kanem,TCD06,Kanem,1,0.6676,97.0688,68.7810,2.4619,86.2992,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Kanem,TCD06,Kanem,1,0.6992,98.9117,70.6920,0.6863,90.3755,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Kanem,TCD06,Kanem,1,0.7026,99.4924,70.6139,0.4429,92.0481,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Lac,TCD07,Lac,1,0.7073,96.8031,73.0623,2.1906,87.4052,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Lac,TCD07,Lac,1,0.7289,98.3697,74.0990,0.9401,91.9440,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Lac,TCD07,Lac,1,0.6833,97.4325,70.1257,2.5178,89.3682,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Logone Occidental,TCD08,Logone Occidental,1,0.5426,87.8655,61.7578,9.7378,65.8110,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Logone Occidental,TCD08,Logone Occidental,1,0.4722,81.0577,58.2576,13.4622,55.6662,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Logone Occidental,TCD08,Logone Occidental,1,0.5281,86.2873,61.2034,10.3318,62.2954,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Logone Oriental,TCD09,Logone Oriental,1,0.5992,94.0209,63.7325,5.4268,76.7464,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Logone Oriental,TCD09,Logone Oriental,1,0.5404,89.0424,60.6928,9.8359,62.0358,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Logone Oriental,TCD09,Logone Oriental,1,0.5061,87.0999,58.1023,11.0911,57.5846,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mandoul,TCD10,Mandoul,1,0.6008,92.3749,65.0365,6.5664,75.1931,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mandoul,TCD10,Mandoul,1,0.5780,92.1006,62.7602,7.0685,71.3295,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mandoul,TCD10,Mandoul,1,0.5201,87.9092,59.1606,10.8088,61.1327,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mayo Kebbi Est,TCD11,Mayo Kebbi Est,1,0.6051,93.1015,64.9901,6.5204,76.2547,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mayo Kebbi Est,TCD11,Mayo Kebbi Est,1,0.5616,89.7025,62.6047,9.0440,67.8080,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mayo Kebbi Est,TCD11,Mayo Kebbi Est,1,0.4840,84.6333,57.1838,12.8314,55.3850,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mayo Kebbi Ouest,TCD12,Mayo Kebbi Ouest,1,0.5519,88.4706,62.3853,10.4451,67.1223,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mayo Kebbi Ouest,TCD12,Mayo Kebbi Ouest,1,0.5314,88.5420,60.0212,9.6218,64.5153,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Mayo Kebbi Ouest,TCD12,Mayo Kebbi Ouest,1,0.4631,80.9150,57.2306,15.8435,54.2928,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Moyen Chari,TCD13,Moyen Chari,1,0.5145,87.7228,58.6486,9.3552,61.0511,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Moyen Chari,TCD13,Moyen Chari,1,0.4581,79.2163,57.8312,15.9098,49.7123,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Moyen Chari,TCD13,Moyen Chari,1,0.4515,79.0340,57.1283,17.5931,49.7308,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,N’Djaména,TCD18,N'Djamena,1,0.2872,55.9037,51.3805,16.6873,29.5332,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,N’Djaména,TCD18,N'Djamena,1,0.2719,56.1194,48.4501,17.1935,25.0825,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,N’Djaména,TCD18,N'Djamena,1,0.2339,47.7035,49.0314,17.5326,23.5313,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Ouaddaï,TCD14,Ouaddai,1,0.6647,94.6390,70.2381,3.4755,85.8017,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Ouaddaï,TCD14,Ouaddai,1,0.6921,97.3252,71.1115,0.6331,89.7659,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Ouaddaï,TCD14,Ouaddai,1,0.6334,90.9599,69.6352,4.3978,85.3025,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Salamat,TCD15,Salamat,1,0.7377,98.2720,75.0708,1.2280,92.6425,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Salamat,TCD15,Salamat,1,0.6924,97.9078,70.7150,1.2496,88.3112,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Salamat,TCD15,Salamat,1,0.6363,94.6572,67.2204,4.4766,79.7013,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Sila,TCD21,Sila,1,0.7098,97.2122,73.0159,2.4111,90.9490,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Sila,TCD21,Sila,1,0.7047,98.0443,71.8725,1.8116,91.9985,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Sila,TCD21,Sila,1,0.6820,97.7287,69.7825,1.7468,91.9747,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Tandjilé,TCD16,Tandjile,1,0.5988,92.5414,64.7030,6.9499,72.0167,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Tandjilé,TCD16,Tandjile,1,0.5251,86.4442,60.7447,12.2307,57.5943,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Tandjilé,TCD16,Tandjile,1,0.5202,86.2975,60.2810,12.1432,63.5606,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Wadi Fira,TCD17,Wadi Fira,1,0.6990,97.8923,71.4020,1.6237,92.5784,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Wadi Fira,TCD17,Wadi Fira,1,0.7115,99.2155,71.7139,0.6042,94.1871,2014-01-01 00:00:00+00:00,2015-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TCD,Y,Y,Wadi Fira,TCD17,Wadi Fira,1,0.6807,95.5399,71.2453,2.2303,90.9811,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,,,,0,0.3207,58.2410,55.0609,18.1175,34.8686,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,,,,0,0.3006,55.1283,54.5335,19.7052,31.7498,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,,,,0,0.2132,42.9543,49.6389,22.4209,19.6968,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Centrale,TG01,Centrale,1,0.3444,64.1237,53.7012,21.3017,35.7558,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Centrale,TG01,Centrale,1,0.3201,64.3578,49.7453,24.1366,27.4587,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Centrale,TG01,Centrale,1,0.2233,48.1535,46.3807,24.6323,19.6469,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Golfe Urbain,,,1,0.0361,8.7877,41.0289,20.4453,1.5907,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TGO,N,N,Kara,TG02,Kara,1,0.3844,67.8452,56.6614,17.4352,42.0025,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Kara,TG02,Kara,1,0.3819,67.2570,56.7842,17.0725,42.6679,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Kara,TG02,Kara,1,0.3123,57.7827,54.0476,17.4861,34.0694,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Lomé,,,1,0.0867,20.1497,43.0327,19.9336,5.4576,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Lomé,,,1,0.0761,17.6444,43.1486,24.0299,4.8759,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Lomé,,,1,0.0562,13.1513,42.7141,19.2512,2.7077,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Lomé Commune,,,1,0.0402,9.6356,41.7531,14.8500,1.3842,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TGO,N,N,Maritime,TG03,Maritime,1,0.2505,48.2513,51.9178,19.8847,25.9361,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Maritime,TG03,Maritime,1,0.3013,58.2577,51.7270,19.6540,31.6557,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Maritime,TG03,Maritime,1,0.2127,44.9895,47.2726,26.4867,18.9900,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Plateaux,TG04,Plateaux,1,0.3736,70.1029,53.2962,18.1359,40.9456,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Plateaux,TG04,Plateaux,1,0.3756,66.7386,56.2751,18.8223,42.1210,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Plateaux,TG04,Plateaux,1,0.2266,48.3666,46.8588,25.6159,18.1304,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Savanes,TG05,Savanes,1,0.5266,83.0017,63.4479,11.2160,64.0719,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Savanes,TG05,Savanes,1,0.5018,82.5821,60.7689,11.9751,57.6270,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TGO,N,N,Savanes,TG05,Savanes,1,0.3802,68.5045,55.5010,20.7114,41.2354,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,,,,0,0.0048,1.3088,36.7748,8.8826,0.0553,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,,,,0,0.0037,0.9306,39.8205,7.1101,0.2113,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,,,,0,0.0021,0.5810,36.7206,6.1601,0.0300,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,,,,0,0.0018,0.4910,37.0097,4.6919,0.0318,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Bangkok,TH10,Bangkok,1,0.0010,0.2846,34.5574,1.3639,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Bangkok,TH10,Bangkok,1,0.0003,0.0864,36.2072,1.7805,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Bangkok,TH10,Bangkok,1,0.0005,0.1395,34.9004,1.4591,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Bangkok,TH10,Bangkok,1,0.0008,0.2494,33.3333,0.9557,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Central,TH57,Chiang Rai,1,0.0028,0.8035,34.5534,3.0244,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Central,TH57,Chiang Rai,1,0.0049,1.1394,42.6356,3.3113,0.4854,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Central,TH57,Chiang Rai,1,0.0017,0.4946,35.3546,2.0822,0.0186,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Central,TH57,Chiang Rai,1,0.0008,0.1896,40.7662,1.1998,0.0547,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,North,TH55,Nan,1,0.0113,2.9057,38.7622,12.4486,0.3090,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,North,TH55,Nan,1,0.0066,1.6653,39.6930,12.5755,0.3513,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,North,TH55,Nan,1,0.0038,1.0067,37.9951,8.9922,0.1090,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,North,TH55,Nan,1,0.0033,0.8772,37.3499,7.3157,0.0356,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Northeast,TH96,Narathiwat,1,0.0047,1.2964,36.1572,15.3766,0.0027,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Northeast,TH96,Narathiwat,1,0.0027,0.7289,37.6665,12.6865,0.0103,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Northeast,TH96,Narathiwat,1,0.0020,0.5277,37.4796,12.4987,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,Northeast,TH96,Narathiwat,1,0.0019,0.5473,35.4187,9.9101,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,South,TH27,Sa Kaeo,1,0.0043,1.1875,35.8876,4.4990,0.0346,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,South,TH27,Sa Kaeo,1,0.0027,0.7549,35.1775,2.7676,0.0245,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,South,TH27,Sa Kaeo,1,0.0027,0.7519,35.6350,2.9341,0.0405,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +THA,N,N,South,TH27,Sa Kaeo,1,0.0032,0.8364,37.8188,2.7208,0.0702,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,,,,0,0.0493,12.1938,40.4289,25.8152,2.3749,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,,,,0,0.0289,7.4053,38.9922,20.1258,0.7316,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,DRS,,,1,0.0376,9.4751,39.6830,29.2901,0.9875,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,DRS,,,1,0.0243,6.2502,38.8697,21.7216,0.4130,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Dushanbe,3501000,Dushanbe,1,0.0152,4.1674,36.4293,9.7090,0.1032,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Dushanbe,3501000,Dushanbe,1,0.0085,2.2445,37.8556,3.5961,0.1273,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Gbao,,,1,0.0554,14.4409,38.3377,27.0441,1.3512,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Gbao,,,1,0.0243,6.3108,38.4883,18.8407,0.4867,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Khatlon,3507000,Khatlon,1,0.0769,18.8815,40.7438,28.9545,4.2058,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Khatlon,3507000,Khatlon,1,0.0414,10.4989,39.4311,25.2151,0.9692,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Sughd,3505000,Sughd,1,0.0352,8.5561,41.1172,23.7600,2.0636,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TJK,N,N,Sughd,3505000,Sughd,1,0.0227,5.9226,38.2766,17.2501,0.8593,2017-01-01 00:00:00+00:00,2017-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,,,,0,0.0123,3.2532,37.8000,7.4610,0.1554,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,,,,0,0.0037,1.0672,34.8733,1.0751,0.0356,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,,,,0,0.0031,0.9340,33.6161,0.5786,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Ahal,,,1,0.0116,3.2520,35.5898,4.4213,0.1943,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Ahal,,,1,0.0016,0.4796,33.3333,0.8222,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Ahal,,,1,0.0059,1.7401,33.7100,0.0746,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Ashgabat,,,1,0.0020,0.6021,33.3333,2.3968,0.0000,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Ashgabat,,,1,0.0016,0.4492,36.6434,0.3189,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Ashgabat,,,1,0.0016,0.4886,33.3333,0.0538,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Balkan,,,1,0.0038,1.1054,34.7005,5.9193,0.0000,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Balkan,,,1,0.0018,0.5510,33.3333,0.0000,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Balkan,,,1,0.0019,0.5790,33.3333,0.2130,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Dashoguz,,,1,0.0160,4.1419,38.5822,10.1427,0.2620,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Dashoguz,,,1,0.0054,1.6271,33.3333,1.5092,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Dashoguz,,,1,0.0024,0.7251,33.3333,0.8444,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Lebap,,,1,0.0087,2.2785,38.4003,10.2594,0.0000,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Lebap,,,1,0.0062,1.6945,36.8721,2.0535,0.1832,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Lebap,,,1,0.0039,1.1457,33.9873,1.3857,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Mary,,,1,0.0198,5.1689,38.3025,7.1559,0.2939,2006-01-01 00:00:00+00:00,2006-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Mary,,,1,0.0028,0.7902,34.8734,0.6809,0.0000,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TKM,N,N,Mary,,,1,0.0026,0.7784,33.3333,0.2284,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,,,,0,0.3617,69.6097,51.9650,17.5578,39.0259,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,,,,0,0.2151,46.8884,45.8841,26.3849,16.8739,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Aileu,TL02,Aileu,1,0.3636,72.1793,50.3680,19.1504,38.6518,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Aileu,TL02,Aileu,1,0.2336,52.1791,44.7653,28.2724,17.1412,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Ainaro,TL01,Ainaro,1,0.4603,83.8594,54.8873,10.9098,54.1708,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Ainaro,TL01,Ainaro,1,0.3206,66.8961,47.9255,18.8174,29.3927,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Baucau,TL03,Baucau,1,0.3788,75.8326,49.9477,15.9922,41.1750,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Baucau,TL03,Baucau,1,0.2065,47.0716,43.8682,27.8182,14.2184,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Bobonaro,TL04,Bobonaro,1,0.4245,80.1329,52.9790,13.4401,46.8491,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Bobonaro,TL04,Bobonaro,1,0.2487,54.2389,45.8601,23.3635,19.9710,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Cova Lima,TL05,Covalima,1,0.3125,66.2258,47.1799,20.6307,28.0377,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Cova Lima,TL05,Covalima,1,0.2275,51.9529,43.7966,24.2642,13.8597,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Dili,TL06,Dili,1,0.1099,24.8948,44.1641,33.8250,7.1929,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Dili,TL06,Dili,1,0.0910,20.9782,43.3856,31.8060,6.1213,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Ermera,TL07,Ermera,1,0.4858,87.1856,55.7193,8.3870,55.6045,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Ermera,TL07,Ermera,1,0.3223,64.9073,49.6570,17.9159,30.6624,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Lautem,TL09,Lautem,1,0.3776,75.8362,49.7887,14.5637,38.7557,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Lautem,TL09,Lautem,1,0.1816,41.9651,43.2653,25.1804,12.8873,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Liquica,TL08,Liquica,1,0.3744,71.0970,52.6611,19.0115,39.2479,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Liquica,TL08,Liquica,1,0.2332,50.3383,46.3296,30.2485,19.2301,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Manatuto,TL11,Manatuto,1,0.3127,63.9950,48.8589,21.9827,31.3952,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Manatuto,TL11,Manatuto,1,0.2108,46.4739,45.3696,31.2280,15.1955,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Manufahi,TL10,Manufahi,1,0.3707,73.1188,50.7035,19.0515,39.4314,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Manufahi,TL10,Manufahi,1,0.2179,47.8059,45.5853,27.4819,17.1350,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Oecussi,TL12,Oecussi,1,0.5026,86.3358,58.2179,8.5952,63.6968,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Oecussi,TL12,Oecussi,1,0.3290,66.5781,49.4125,18.4215,31.1483,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Viqueque,TL13,Viqueque,1,0.4080,79.9476,51.0284,14.5011,44.0579,2009-01-01 00:00:00+00:00,2010-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TLS,N,N,Viqueque,TL13,Viqueque,1,0.2127,49.1564,43.2761,30.3792,11.8783,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TON,N,N,,,,0,0.0033,0.8746,38.1446,6.4024,0.0246,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TON,N,N,Eua,TO4,'Eua,1,0.0055,1.2970,42.1576,10.6645,0.4395,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TON,N,N,Ha'apai,TO3,Ha'apai,1,0.0085,2.2035,38.6622,9.4056,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TON,N,N,Ongo Niua,,,1,0.0120,3.6147,33.3333,4.8995,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TON,N,N,Tongatapu,TO1,Tongatapu,1,0.0026,0.6649,38.6148,5.8830,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TON,N,N,Vava'u,TO2,Vava'u,1,0.0029,0.8337,35.3354,5.9578,0.0000,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TTO,N,Y,,,,0,0.0179,4.9565,36.0858,1.5726,0.2258,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,,,,0,0.0078,2.1238,36.5984,0.7310,0.2665,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,Central,,,1,0.0178,4.9117,36.1452,1.3276,0.1433,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,Central,,,1,0.0075,2.1416,34.8843,0.4382,0.1211,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,East,,,1,0.0185,4.9342,37.5615,2.7284,0.4924,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,East,,,1,0.0093,2.2177,42.1243,0.7481,0.6291,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,Eastern,,,1,0.0032,0.9028,35.2376,1.0226,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TTO,N,Y,North Central,,,1,0.0014,0.4109,33.3333,0.5593,0.0000,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TTO,N,Y,North West,,,1,0.0203,5.6696,35.8152,1.1131,0.2826,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,North West,,,1,0.0078,2.2870,33.8952,0.6796,0.0470,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,South West,,,1,0.0176,4.9041,35.8351,1.9353,0.2177,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,South West,,,1,0.0068,1.7904,38.0751,0.9543,0.3675,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,Tobago,TT90,Tobago,1,0.0054,1.4814,36.4034,1.8613,0.2078,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TTO,N,Y,Tobago,TT90,Tobago,1,0.0148,4.0047,37.0706,0.6764,0.4932,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,,,,0,0.0053,1.3305,39.5965,3.7694,0.1655,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,,,,0,0.0029,0.7899,36.4245,2.4120,0.0597,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,,,,0,0.0034,0.9776,35.2061,2.8251,0.0226,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,Central West,TN3,Centre East,1,0.0181,4.6367,39.1237,11.3536,0.5340,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,Central West,TN3,Centre East,1,0.0079,2.1769,36.2016,6.0605,0.0806,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,Central West,TN3,Centre East,1,0.0096,2.6873,35.6734,5.6584,0.0000,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,Centre East,TN3,Centre East,1,0.0013,0.3788,33.7337,2.3798,0.0000,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,Centre East,TN3,Centre East,1,0.0033,0.8541,38.8057,1.4985,0.1862,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,Centre East,TN3,Centre East,1,0.0019,0.5560,35.0678,1.1435,0.0504,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,District Tunis,,,1,0.0000,0.0000,,0.6483,0.0000,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,District Tunis,,,1,0.0004,0.1178,33.3333,0.4132,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,District Tunis,,,1,0.0024,0.7282,33.3333,0.6305,0.0000,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,North East,TN1,North East,1,0.0037,0.9696,38.3577,3.1491,0.0956,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,North East,TN1,North East,1,0.0015,0.4499,34.4242,2.0653,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,North East,TN1,North East,1,0.0019,0.5636,33.3333,3.4440,0.0000,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,North West,TN2,North West,1,0.0156,3.6798,42.2618,7.5520,0.5774,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,North West,TN2,North West,1,0.0044,1.2026,36.5473,6.0656,0.0536,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,North West,TN2,North West,1,0.0029,0.7552,37.9256,8.2624,0.0976,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,South East,TN5,South East,1,0.0015,0.4361,33.3333,1.7133,0.0000,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,South East,TN5,South East,1,0.0011,0.3361,33.3333,1.5566,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,South East,TN5,South East,1,0.0054,1.4758,36.4645,3.0533,0.0000,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,South Western,,,1,0.0034,0.8059,42.7912,2.4253,0.3177,2011-01-01 00:00:00+00:00,2012-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,South Western,,,1,0.0034,0.9978,34.2929,1.4862,0.0000,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUN,N,N,South Western,,,1,0.0027,0.7841,34.5142,0.8372,0.0000,2023-01-01 00:00:00+00:00,2023-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TUV,N,N,,,,0,0.0081,2.1144,38.2353,12.1945,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TZA,N,Y,,,,0,0.3885,73.6111,52.7790,17.2284,43.7676,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,,,,0,0.3394,67.2502,50.4747,19.6253,34.7895,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,,,,0,0.2838,57.0112,49.7753,23.3574,27.4621,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,,,,0,0.2103,44.9066,46.8323,23.6486,17.3749,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Central,,,1,0.3844,73.0014,52.6554,17.5894,43.6014,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Central,,,1,0.4335,82.9676,52.2459,13.9934,50.5878,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Central,,,1,0.3307,66.1247,50.0057,24.9496,33.0519,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Central,,,1,0.2184,46.9428,46.5332,26.8169,16.7002,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Eastern,,,1,0.4015,75.2805,53.3354,15.0357,46.9347,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Eastern,,,1,0.2078,43.4726,47.8070,22.1152,18.4422,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Eastern,,,1,0.1390,30.4300,45.6628,24.4808,9.7691,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Eastern,,,1,0.1106,24.6463,44.8717,21.1685,7.5375,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Lake,TZ08,Lindi,1,0.3720,72.9316,51.0033,16.5114,38.2019,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Lake,TZ08,Lindi,1,0.3761,73.4482,51.2049,18.5927,39.1254,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Lake,TZ08,Lindi,1,0.3465,67.8323,51.0771,21.2000,36.2375,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Lake,TZ08,Lindi,1,0.2499,52.6935,47.4219,24.6502,22.0311,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Northern,,,1,0.3666,70.9912,51.6434,20.1383,40.7874,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Northern,,,1,0.2855,59.3707,48.0826,23.9175,27.6950,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Northern,,,1,0.2009,42.4069,47.3686,24.5888,16.9632,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Northern,,,1,0.2012,40.5022,49.6705,20.4141,19.4053,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,South West Highlands,,,1,0.2407,51.6665,46.5890,21.2370,18.9052,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +TZA,N,Y,Southern,,,1,0.5599,86.8136,64.4941,10.8788,66.6928,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Southern,,,1,0.3278,69.2164,47.3625,22.1164,30.8733,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Southern,,,1,0.2876,62.0745,46.3322,29.6855,20.9419,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Southern,,,1,0.1699,40.8377,41.5989,27.8745,10.1072,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Southern Highlands,,,1,0.3917,75.0348,52.2021,18.2929,44.5587,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Southern Highlands,,,1,0.3421,69.6324,49.1276,19.8544,32.6559,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Southern Highlands,,,1,0.2856,59.5780,47.9335,23.1665,26.9712,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Southern Highlands,,,1,0.2030,44.8460,45.2688,24.3457,14.3893,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Western,,,1,0.3974,74.5195,53.3347,14.6388,46.1054,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Western,,,1,0.4228,78.2218,54.0571,15.7955,46.9576,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Western,,,1,0.3899,71.9211,54.2082,20.5316,42.1777,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Western,,,1,0.3164,64.8994,48.7549,19.5938,29.5746,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Zanzibar,,,1,0.2816,62.3191,45.1869,27.5933,22.8944,2004-01-01 00:00:00+00:00,2005-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Zanzibar,,,1,0.2055,43.7889,46.9406,24.7504,16.6765,2010-01-01 00:00:00+00:00,2010-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Zanzibar,,,1,0.1316,27.9072,47.1540,27.9817,9.9208,2015-01-01 00:00:00+00:00,2016-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +TZA,N,Y,Zanzibar,,,1,0.0745,18.1588,41.0511,26.1398,3.1706,2022-01-01 00:00:00+00:00,2022-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,,,,0,0.3491,67.7252,51.5413,21.7314,35.0905,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,,,,0,0.2811,57.1809,49.1532,23.6255,25.6800,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,Acholi,,,1,0.3588,71.9105,49.8945,19.1762,34.6744,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Ankole,,,1,0.2810,58.1987,48.2810,27.4224,23.0024,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Bugisu,,,1,0.2971,62.8629,47.2660,27.2192,25.3483,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Bukedi,,,1,0.3029,64.1864,47.1948,24.4856,27.8597,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Bunyoro,,,1,0.3479,67.3721,51.6361,18.6294,35.2179,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Busoga,,,1,0.2539,54.2187,46.8230,27.3340,21.5134,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Central,UG1,Central,1,0.2207,46.0607,47.9225,28.4041,18.5816,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,Central,UG1,Central,1,0.1597,34.5824,46.1908,25.2730,11.9935,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,Eastern,UG2,Eastern,1,0.3774,74.7929,50.4564,19.2906,37.0861,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,Eastern,UG2,Eastern,1,0.2876,60.5055,47.5277,25.4682,25.3771,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,Kampala,,,1,0.0307,7.2853,42.1965,24.5488,0.9757,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Karamoja,,,1,0.6289,96.2579,65.3329,3.5299,85.0563,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Kigezi,,,1,0.2669,57.3590,46.5285,27.9737,19.4578,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Lango,,,1,0.3513,70.7695,49.6409,22.3001,33.2051,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,North Buganda,,,1,0.2110,45.6642,46.2176,25.5311,17.2334,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Northern,UG3,Northern,1,0.4544,81.3891,55.8270,16.5089,50.1798,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,Northern,UG3,Northern,1,0.4045,76.3665,52.9637,17.2478,42.9194,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,South Buganda,,,1,0.1530,32.9468,46.4340,25.3117,10.5962,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Teso,,,1,0.3195,65.0688,49.1079,21.8549,29.2047,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Tooro,,,1,0.3060,63.2068,48.4092,25.2802,27.2671,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,West Nile,,,1,0.4117,78.1559,52.6726,15.8300,43.7571,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UGA,N,Y,Western,UG4,Western,1,0.3722,72.2386,51.5260,21.3091,38.6222,2011-01-01 00:00:00+00:00,2011-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UGA,N,Y,Western,UG4,Western,1,0.3015,61.7105,48.8622,24.9890,26.4706,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,,,,0,0.0013,0.3554,36.4452,1.4293,0.0354,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,,,,0,0.0008,0.2347,34.4544,0.3995,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,Center,,,1,0.0012,0.3345,35.1709,1.8149,0.0000,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,Center,,,1,0.0008,0.2400,35.2516,0.5791,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,East,,,1,0.0003,0.0582,43.1169,0.6503,0.0341,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,East,,,1,0.0008,0.2422,33.3333,0.1830,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,North,,,1,0.0015,0.4105,35.6665,0.9794,0.0575,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,North,,,1,0.0005,0.1351,34.4139,0.7672,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,South,UA80,Kyiv,1,0.0005,0.1415,34.4132,1.3966,0.0000,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,South,UA80,Kyiv,1,0.0006,0.1776,33.3333,0.2011,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,West,,,1,0.0032,0.8621,36.5943,2.6386,0.0615,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UKR,Y,Y,West,,,1,0.0012,0.3289,35.6238,0.4541,0.0000,2012-01-01 00:00:00+00:00,2012-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +UZB,N,N,,,,0,0.0061,1.7295,35.2913,0.2391,0.0459,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UZB,N,N,Central,,,1,0.0058,1.6271,35.6765,0.0970,0.0000,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UZB,N,N,Central-Eastern,,,1,0.0077,2.2653,33.7826,0.0847,0.0000,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UZB,N,N,Eastern,,,1,0.0041,1.0809,37.8111,0.6195,0.1108,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UZB,N,N,Southern,UZ24,Syrdarya,1,0.0095,2.7280,34.8501,0.0000,0.0804,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UZB,N,N,Tashkent City,UZ26,Tashkent city,1,0.0009,0.2589,33.3333,0.0000,0.0000,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +UZB,N,N,Western,,,1,0.0072,2.0224,35.4734,0.2475,0.0000,2021-01-01 00:00:00+00:00,2022-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +VNM,N,N,,,,0,0.0194,4.9269,39.2882,5.4311,0.7063,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,,,,0,0.0077,1.9191,40.2757,3.4725,0.3501,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Central Highlands,,,1,0.0389,8.8878,43.7492,8.5366,2.7896,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Central Highlands,,,1,0.0260,6.1855,41.9786,5.5012,1.1598,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Mekong River Delta,,,1,0.0366,9.8120,37.3023,9.1497,0.8785,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Mekong River Delta,,,1,0.0078,1.9256,40.4016,8.3526,0.3670,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,North Central & Central Coast,,,1,0.0105,2.8550,36.7197,5.8224,0.1149,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,North Central & Central Coast,,,1,0.0033,0.8702,38.1692,2.3662,0.0928,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Northern Uplands,,,1,0.0389,9.2585,42.0020,7.0589,1.9172,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Northern Uplands,,,1,0.0262,6.3293,41.4616,5.4160,1.5442,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Red River Delta,,,1,0.0036,1.0286,35.4409,1.7247,0.0000,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Red River Delta,,,1,0.0010,0.2806,33.8831,0.9940,0.0000,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Southeast,,,1,0.0108,2.7139,39.7999,3.5789,0.5120,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +VNM,N,N,Southeast,,,1,0.0029,0.8405,34.9590,1.3809,0.0000,2020-01-01 00:00:00+00:00,2021-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +WSM,N,N,,,,0,0.0246,6.2885,39.1198,12.8549,0.4860,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +WSM,N,N,Apia Urban Area,,,1,0.0146,3.7730,38.6712,6.7992,0.0000,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +WSM,N,N,North West Upolu,,,1,0.0349,8.8931,39.2030,13.8702,0.5222,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +WSM,N,N,Rest of Upolu,,,1,0.0232,5.6608,41.0592,14.8209,1.2181,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +WSM,N,N,Savaii,,,1,0.0182,4.9022,37.0673,14.2803,0.1318,2019-01-01 00:00:00+00:00,2020-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +YEM,Y,Y,,,,0,0.1926,38.1147,50.5253,19.2684,17.7675,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,,,,0,0.1880,37.4449,50.2052,22.4916,16.9645,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Abyan,YE12,Abyan,1,0.0937,20.0907,46.6426,20.6773,7.1046,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Abyan,YE12,Abyan,1,0.1139,25.1073,45.3839,17.0266,7.9231,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Aden,YE24,Aden,1,0.0537,13.4286,39.9596,2.2484,3.0174,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Aden,YE24,Aden,1,0.0383,9.2074,41.6490,5.7589,1.6287,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Baidha,YE14,Al Bayda,1,0.1668,34.6424,48.1395,17.1218,13.3473,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Baidha,YE14,Al Bayda,1,0.1830,38.5206,47.4986,26.7090,13.9263,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Hodiedah,YE18,Al Hodeidah,1,0.2586,49.5364,52.1970,17.9020,25.5419,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Hodiedah,YE18,Al Hodeidah,1,0.2348,45.8621,51.1889,23.4228,21.8439,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Jawf,YE16,Al Jawf,1,0.2127,46.1535,46.0776,30.7081,15.0588,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Jawf,YE16,Al Jawf,1,0.3658,70.9386,51.5588,23.0490,39.2916,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Mhrah,YE28,Al Maharah,1,0.0834,18.0887,46.1305,10.5311,7.4663,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Mhrah,YE28,Al Maharah,1,0.0761,17.7200,42.9397,9.2097,4.7906,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Mhweit,YE27,Al Mahwit,1,0.2798,53.4245,52.3772,25.7505,26.9517,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Al-Mhweit,YE27,Al Mahwit,1,0.2993,56.5431,52.9295,23.5216,32.0718,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Aldhalae,YE30,Ad Dali',1,0.1484,31.9122,46.4914,29.8495,10.5542,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Aldhalae,YE30,Ad Dali',1,0.2341,47.3006,49.4950,23.8139,21.1044,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Amran,YE29,Amran,1,0.2866,53.7585,53.3094,21.5623,28.5918,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Amran,YE29,Amran,1,0.2431,48.5495,50.0696,27.9206,21.7606,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Dhamar,YE20,Dhamar,1,0.2617,49.9544,52.3855,24.9235,24.0883,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Dhamar,YE20,Dhamar,1,0.2519,50.0927,50.2857,29.5585,23.4189,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Hadramout,YE19,Hadramawt,1,0.0933,21.6174,43.1820,11.4146,6.3107,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Hadramout,YE19,Hadramawt,1,0.0415,9.3729,44.2683,9.1830,2.3864,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Hajjah,YE17,Hajjah,1,0.3878,67.2995,57.6201,16.3859,45.7031,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Hajjah,YE17,Hajjah,1,0.3805,69.1827,55.0006,18.5218,42.4745,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Ibb,YE11,Ibb,1,0.1743,35.3221,49.3428,24.1658,14.5089,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Ibb,YE11,Ibb,1,0.1446,30.1623,47.9280,31.1255,10.8789,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Lahj,YE25,Lahj,1,0.1532,31.7234,48.3027,26.1423,14.0400,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Lahj,YE25,Lahj,1,0.1402,30.7052,45.6688,28.1656,9.6714,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Mareb,YE26,Ma'rib,1,0.1657,36.3163,45.6373,28.0110,11.1966,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Mareb,YE26,Ma'rib,1,0.2121,44.4279,47.7410,18.6593,16.8918,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Reimah,YE31,Raymah,1,0.3374,66.5044,50.7333,23.9702,35.8353,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Reimah,YE31,Raymah,1,0.4598,82.9553,55.4220,13.3345,50.4305,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Sadah,YE22,Sa'dah,1,0.2459,48.9241,50.2611,25.4141,20.3511,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Sadah,YE22,Sa'dah,1,0.2662,50.5874,52.6196,22.7706,25.8037,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Sanaa,YE23,Sana'a,1,0.2132,43.2853,49.2554,28.5425,18.3032,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Sanaa,YE23,Sana'a,1,0.2086,43.7461,47.6813,32.4191,16.7936,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Sanaa City,YE13,Sana'a City,1,0.0359,9.5996,37.4227,1.1961,1.7425,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Sanaa City,YE13,Sana'a City,1,0.0357,9.3384,38.2540,8.6014,1.1554,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Shabwah,YE21,Shabwah,1,0.1216,28.0442,43.3470,25.2822,7.0351,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Shabwah,YE21,Shabwah,1,0.1647,34.4544,47.8158,21.4031,11.8473,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Socotra,YE32,Socotra,1,0.1526,32.9820,46.2794,24.3129,10.9361,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +YEM,Y,Y,Taiz,YE15,Ta'iz,1,0.1605,32.6435,49.1721,21.7478,14.3553,2013-01-01 00:00:00+00:00,2013-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +YEM,Y,Y,Taiz,YE15,Ta'iz,1,0.1252,26.4200,47.3767,30.3830,8.7740,2022-01-01 00:00:00+00:00,2023-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZAF,N,N,,,,0,0.0249,6.2569,39.7812,12.1688,0.9450,2016-01-01 00:00:00+00:00,2016-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ZMB,N,Y,,,,0,0.3433,65.1691,52.6825,15.8102,38.5196,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,,,,0,0.2627,53.2958,49.2828,22.4939,24.6004,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,,,,0,0.2317,47.9061,48.3623,23.9130,21.0288,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Central,ZM101,Central,1,0.3572,69.2626,51.5761,18.7084,37.9166,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Central,ZM101,Central,1,0.2694,55.6248,48.4301,26.0071,22.3805,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Central,ZM101,Central,1,0.2486,51.2357,48.5237,26.2153,22.2111,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Copperbelt,ZM102,Copperbelt,1,0.1884,40.7832,46.2040,17.7896,14.6107,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Copperbelt,ZM102,Copperbelt,1,0.1412,30.8892,45.7036,24.5407,9.9507,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Copperbelt,ZM102,Copperbelt,1,0.1240,27.8860,44.4802,21.9262,8.5334,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Eastern,ZM103,Eastern,1,0.4562,82.3362,55.4098,12.4779,56.3189,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Eastern,ZM103,Eastern,1,0.3594,70.1075,51.2640,18.6680,37.0897,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Eastern,ZM103,Eastern,1,0.3217,64.7221,49.7018,21.6569,30.7115,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Luapula,ZM104,Luapula,1,0.4670,83.7019,55.7940,12.5383,58.0151,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Luapula,ZM104,Luapula,1,0.3797,74.7977,50.7651,17.7321,36.7933,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Luapula,ZM104,Luapula,1,0.3474,66.6683,52.1150,19.6550,37.1922,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Lusaka,ZM105,Lusaka,1,0.1461,32.0365,45.6194,17.1976,11.9412,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Lusaka,ZM105,Lusaka,1,0.0981,22.5261,43.5660,22.6672,6.4325,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Lusaka,ZM105,Lusaka,1,0.0850,19.4791,43.6593,25.1354,5.4229,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Muchinga,ZM106,Muchinga,1,0.2891,59.0217,48.9777,26.5254,26.6413,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,ef20310e-2821-4aa9-98a8-1950f45f10d0 +ZMB,N,Y,North-Western,ZM108,North-Western,1,0.4507,82.6249,54.5421,13.3704,54.6436,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,North-Western,ZM108,North-Western,1,0.3291,66.6327,49.3869,22.1904,31.4897,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,North-Western,ZM108,North-Western,1,0.2532,54.1333,46.7720,25.8495,21.1328,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Northern,ZM107,Northern,1,0.4357,79.6639,54.6975,14.5508,50.2627,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Northern,ZM107,Northern,1,0.3604,70.5784,51.0610,21.2311,36.9516,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Northern,ZM107,Northern,1,0.3130,63.4989,49.3001,23.1680,29.6640,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Southern,ZM109,Southern,1,0.3164,62.8897,50.3162,22.0888,32.6485,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Southern,ZM109,Southern,1,0.2696,56.4320,47.7816,25.4503,24.0864,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Southern,ZM109,Southern,1,0.2132,46.2448,46.0966,29.1994,16.2761,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Western,ZM110,Western,1,0.4628,84.6225,54.6868,10.3786,59.9986,2007-01-01 00:00:00+00:00,2007-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Western,ZM110,Western,1,0.3691,71.5177,51.6080,22.1320,40.7707,2013-01-01 00:00:00+00:00,2014-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZMB,N,Y,Western,ZM110,Western,1,0.3393,67.7855,50.0529,21.6800,37.6626,2018-01-01 00:00:00+00:00,2018-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,,,,0,0.1564,36.0942,43.3426,27.2391,10.5420,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,,,,0,0.1300,30.2084,43.0433,27.7063,7.8232,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,,,,0,0.1099,25.8000,42.6130,26.3303,6.7702,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Bulawayo,ZW10,Bulawayo,1,0.0236,5.7622,41.0418,7.9244,1.5622,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Bulawayo,ZW10,Bulawayo,1,0.0066,1.7139,38.3482,7.4997,0.0000,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Bulawayo,ZW10,Bulawayo,1,0.0153,3.8109,40.2656,10.5239,0.3947,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Harare,ZW19,Harare,1,0.0254,5.9804,42.4003,17.3711,1.2871,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Harare,ZW19,Harare,1,0.0315,7.7485,40.5893,11.8464,1.2450,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Harare,ZW19,Harare,1,0.0188,4.6309,40.5306,13.8025,0.6001,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Manicaland,ZW11,Manicaland,1,0.1733,40.2993,43.0003,29.3795,10.7068,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Manicaland,ZW11,Manicaland,1,0.1609,37.3721,43.0473,26.2816,9.8324,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Manicaland,ZW11,Manicaland,1,0.1386,31.8476,43.5102,29.5363,9.5889,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland Central,ZW12,Mashonaland Central,1,0.1933,43.2815,44.6552,35.0498,13.2799,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland Central,ZW12,Mashonaland Central,1,0.1785,41.8306,42.6837,33.7769,10.5903,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland Central,ZW12,Mashonaland Central,1,0.1531,35.2976,43.3659,32.3253,10.5756,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland East,ZW13,Mashonaland East,1,0.1457,35.3854,41.1740,31.0250,7.4406,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland East,ZW13,Mashonaland East,1,0.1085,26.2442,41.3283,30.7704,5.0409,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland East,ZW13,Mashonaland East,1,0.0999,24.1005,41.4660,28.7458,5.0987,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland West,ZW14,Mashonaland West,1,0.1695,38.4662,44.0642,30.6064,11.2480,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland West,ZW14,Mashonaland West,1,0.1484,34.0609,43.5685,30.1298,10.3846,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Mashonaland West,ZW14,Mashonaland West,1,0.1204,28.6203,42.0804,29.8407,7.0836,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Masvingo,ZW18,Masvingo,1,0.2139,50.0090,42.7808,30.7804,14.4436,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Masvingo,ZW18,Masvingo,1,0.1604,35.6927,44.9261,34.0906,11.0988,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Masvingo,ZW18,Masvingo,1,0.1324,31.0862,42.5813,29.9457,7.9567,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Matabeleland North,ZW15,Matabeleland North,1,0.2642,59.4232,44.4553,24.1140,22.8968,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Matabeleland North,ZW15,Matabeleland North,1,0.1811,42.5103,42.5908,38.5297,10.0784,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Matabeleland North,ZW15,Matabeleland North,1,0.1913,44.1044,43.3820,32.5826,13.6360,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Matabeleland South,ZW16,Matabeleland South,1,0.1910,44.6535,42.7731,32.6295,12.6581,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Matabeleland South,ZW16,Matabeleland South,1,0.1455,33.8431,42.9880,34.3759,9.2185,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Matabeleland South,ZW16,Matabeleland South,1,0.1136,27.6856,41.0255,30.5281,5.0104,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Midlands,ZW17,Midlands,1,0.1866,42.4616,43.9565,26.1495,13.9387,2010-01-01 00:00:00+00:00,2011-12-31 00:00:00+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Midlands,ZW17,Midlands,1,0.1526,35.5357,42.9448,31.2127,8.5033,2015-01-01 00:00:00+00:00,2015-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe +ZWE,N,Y,Midlands,ZW17,Midlands,1,0.1301,30.3465,42.8563,24.9637,8.3081,2019-01-01 00:00:00+00:00,2019-12-31 23:59:59+00:00,42b16840-3a56-4a20-9314-7aa171f1136c,7c131db3-a172-4280-b37a-85f678192fbe diff --git a/tests/fixtures/input/global-mpi.json b/tests/fixtures/input/global-mpi.json deleted file mode 100644 index 690d8a08..00000000 --- a/tests/fixtures/input/global-mpi.json +++ /dev/null @@ -1 +0,0 @@ -{"archived": false, "batch": "290f7d3e-8f41-4f30-bd24-ec8b88fb6a37", "caveats": "", "creator_user_id": "b682f6f7-cd7e-4bd4-8aa7-f74138dc6313", "data_update_frequency": "365", "dataset_date": "[2001-01-01T00:00:00 TO 2023-12-31T23:59:59]", "dataset_preview": "first_resource", "dataset_source": "Alkire, S., Kanagaratnam, U., and Suppa, N. (2023). \u2018The global Multidimensional Poverty Index (MPI) 2023 disaggregation results and methodological note\u2019, OPHI MPI Methodological Note 56, Oxford Poverty and Human Development Initiative (OPHI), University of Oxford.", "due_date": "2025-11-18T23:21:48", "has_geodata": false, "has_quickcharts": false, "has_showcases": false, "id": "42b16840-3a56-4a20-9314-7aa171f1136c", "is_requestdata_type": false, "isopen": false, "last_modified": "2024-11-18T23:21:48.357854", "license_id": "other-pd-nr", "license_title": "Public Domain / No Restrictions", "maintainer": "196196be-6037-4488-8b71-d786adf4c081", "maintainer_email": null, "metadata_created": "2024-11-05T12:48:36.172250", "metadata_modified": "2024-11-18T23:22:02.629412", "methodology": "Other", "methodology_other": "The global MPI is a leading policy tool that applies the multidimensional poverty methodology developed by Alkire and Foster [(2011)](https://www.sciencedirect.com/science/article/abs/pii/S0047272710001660?via%3Dihub). The global MPI is the product of incidence of poverty (H) and the average intensity of poverty (A).", "name": "global-mpi", "notes": "The index provides the only comprehensive measure available for non-income poverty, which has become a critical underpinning of the SDGs. Critically the MPI comprises variables that are already reported under the Demographic Health Surveys (DHS) and Multi-Indicator Cluster Surveys (MICS)\nThe resources subnational multidimensional poverty data from the [data tables](https://ophi.org.uk/multidimensional-poverty-index/data-tables-do-files/) published by the Oxford Poverty and Human Development Initiative (OPHI), University of Oxford. The global Multidimensional Poverty Index (MPI) measures multidimensional poverty in over 100 developing countries, using internationally comparable datasets and is updated annually. The measure captures the severe deprivations that each person faces at the same time using information from 10 indicators, which are grouped into three equally weighted dimensions: health, education, and living standards. The global MPI methodology is detailed in Alkire, Kanagaratnam & Suppa [(2023)](https://ophi.org.uk/sites/default/files/2024-03/OPHI_MPI_MN57_2023.pdf)", "num_resources": 5, "num_tags": 11, "organization": {"id": "00547685-9ded-4d69-9ca5-47d5278ead7c", "name": "oxford-poverty-human-development-initiative", "title": "Oxford Poverty & Human Development Initiative", "type": "organization", "description": "The Oxford Poverty and Human Development Initiative (OPHI) is an economic research centre within the Oxford Department of International Development at the University of Oxford. OPHI aims to build and advance a more systematic methodological and economic framework for reducing multidimensional poverty, grounded in people\u2019s experiences and values.", "image_url": "", "created": "2015-01-09T16:54:53.844274", "is_organization": true, "approval_status": "approved", "state": "active"}, "overdue_date": "2026-01-17T23:21:48", "owner_org": "00547685-9ded-4d69-9ca5-47d5278ead7c", "package_creator": "berylnyamgeroh", "pageviews_last_14_days": 24, "private": false, "qa_completed": false, "solr_additions": "{\"countries\": [\"Afghanistan\", \"Albania\", \"Algeria\", \"Angola\", \"Argentina\", \"Armenia\", \"Bangladesh\", \"Barbados\", \"Belize\", \"Benin\", \"Bhutan\", \"Bolivia (Plurinational State of)\", \"Bosnia and Herzegovina\", \"Botswana\", \"Brazil\", \"Burkina Faso\", \"Burundi\", \"Cambodia\", \"Cameroon\", \"Central African Republic\", \"Chad\", \"China\", \"Colombia\", \"Comoros\", \"Congo\", \"Costa Rica\", \"C\\u00f4te d'Ivoire\", \"Cuba\", \"Democratic Republic of the Congo\", \"Dominican Republic\", \"Ecuador\", \"Egypt\", \"El Salvador\", \"Eswatini\", \"Ethiopia\", \"Fiji\", \"Gabon\", \"Gambia\", \"Georgia\", \"Ghana\", \"Guatemala\", \"Guinea\", \"Guinea-Bissau\", \"Guyana\", \"Haiti\", \"Honduras\", \"India\", \"Indonesia\", \"Iraq\", \"Jamaica\", \"Jordan\", \"Kazakhstan\", \"Kenya\", \"Kiribati\", \"Kyrgyzstan\", \"Lao People's Democratic Republic\", \"Lesotho\", \"Liberia\", \"Libya\", \"Madagascar\", \"Malawi\", \"Maldives\", \"Mali\", \"Mauritania\", \"Mexico\", \"Mongolia\", \"Montenegro\", \"Morocco\", \"Mozambique\", \"Myanmar\", \"Namibia\", \"Nepal\", \"Nicaragua\", \"Niger\", \"Nigeria\", \"North Macedonia\", \"Pakistan\", \"Papua New Guinea\", \"Paraguay\", \"Peru\", \"Philippines\", \"Republic of Moldova\", \"Rwanda\", \"Saint Lucia\", \"Samoa\", \"Sao Tome and Principe\", \"Senegal\", \"Serbia\", \"Seychelles\", \"Sierra Leone\", \"South Africa\", \"Sri Lanka\", \"State of Palestine\", \"Sudan\", \"Suriname\", \"Tajikistan\", \"Thailand\", \"Timor-Leste\", \"Togo\", \"Tonga\", \"Trinidad and Tobago\", \"Tunisia\", \"Turkmenistan\", \"Tuvalu\", \"Uganda\", \"Ukraine\", \"United Republic of Tanzania\", \"Uzbekistan\", \"Viet Nam\", \"Yemen\", \"Zambia\", \"Zimbabwe\"]}", "state": "active", "subnational": "1", "title": "Global Multi Dimensional Poverty Index", "total_res_downloads": 4, "type": "dataset", "updated_by_script": "HDX Scraper: OPHI (2024-11-18T23:21:45.854804)", "url": null, "version": null, "groups": [{"description": "", "display_name": "Afghanistan", "id": "afg", "image_display_url": "", "name": "afg", "title": "Afghanistan"}, {"description": "", "display_name": "Albania", "id": "alb", "image_display_url": "", "name": "alb", "title": "Albania"}, {"description": "", "display_name": "Algeria", "id": "dza", "image_display_url": "", "name": "dza", "title": "Algeria"}, {"description": "", "display_name": "Angola", "id": "ago", "image_display_url": "", "name": "ago", "title": "Angola"}, {"description": "", "display_name": "Argentina", "id": "arg", "image_display_url": "", "name": "arg", "title": "Argentina"}, {"description": "", "display_name": "Armenia", "id": "arm", "image_display_url": "", "name": "arm", "title": "Armenia"}, {"description": "test", "display_name": "Bangladesh", "id": "bgd", "image_display_url": "", "name": "bgd", "title": "Bangladesh"}, {"description": "", "display_name": "Barbados", "id": "brb", "image_display_url": "", "name": "brb", "title": "Barbados"}, {"description": "", "display_name": "Belize", "id": "blz", "image_display_url": "", "name": "blz", "title": "Belize"}, {"description": "", "display_name": "Benin", "id": "ben", "image_display_url": "", "name": "ben", "title": "Benin"}, {"description": "", "display_name": "Bhutan", "id": "btn", "image_display_url": "", "name": "btn", "title": "Bhutan"}, {"description": "", "display_name": "Bolivia (Plurinational State of)", "id": "bol", "image_display_url": "", "name": "bol", "title": "Bolivia (Plurinational State of)"}, {"description": "", "display_name": "Bosnia and Herzegovina", "id": "bih", "image_display_url": "", "name": "bih", "title": "Bosnia and Herzegovina"}, {"description": "", "display_name": "Botswana", "id": "bwa", "image_display_url": "", "name": "bwa", "title": "Botswana"}, {"description": "", "display_name": "Brazil", "id": "bra", "image_display_url": "", "name": "bra", "title": "Brazil"}, {"description": "", "display_name": "Burkina Faso", "id": "bfa", "image_display_url": "", "name": "bfa", "title": "Burkina Faso"}, {"description": "", "display_name": "Burundi", "id": "bdi", "image_display_url": "", "name": "bdi", "title": "Burundi"}, {"description": "", "display_name": "Cambodia", "id": "khm", "image_display_url": "", "name": "khm", "title": "Cambodia"}, {"description": "", "display_name": "Cameroon", "id": "cmr", "image_display_url": "", "name": "cmr", "title": "Cameroon"}, {"description": "", "display_name": "Central African Republic", "id": "caf", "image_display_url": "", "name": "caf", "title": "Central African Republic"}, {"description": "", "display_name": "Chad", "id": "tcd", "image_display_url": "", "name": "tcd", "title": "Chad"}, {"description": "", "display_name": "China", "id": "chn", "image_display_url": "", "name": "chn", "title": "China"}, {"description": "", "display_name": "Colombia", "id": "col", "image_display_url": "", "name": "col", "title": "Colombia"}, {"description": "", "display_name": "Comoros", "id": "com", "image_display_url": "", "name": "com", "title": "Comoros"}, {"description": "", "display_name": "Congo", "id": "cog", "image_display_url": "", "name": "cog", "title": "Congo"}, {"description": "", "display_name": "Costa Rica", "id": "cri", "image_display_url": "", "name": "cri", "title": "Costa Rica"}, {"description": "", "display_name": "C\u00f4te d'Ivoire", "id": "civ", "image_display_url": "", "name": "civ", "title": "C\u00f4te d'Ivoire"}, {"description": "", "display_name": "Cuba", "id": "cub", "image_display_url": "", "name": "cub", "title": "Cuba"}, {"description": "", "display_name": "Democratic Republic of the Congo", "id": "cod", "image_display_url": "", "name": "cod", "title": "Democratic Republic of the Congo"}, {"description": "", "display_name": "Dominican Republic", "id": "dom", "image_display_url": "", "name": "dom", "title": "Dominican Republic"}, {"description": "", "display_name": "Ecuador", "id": "ecu", "image_display_url": "", "name": "ecu", "title": "Ecuador"}, {"description": "", "display_name": "Egypt", "id": "egy", "image_display_url": "", "name": "egy", "title": "Egypt"}, {"description": "", "display_name": "El Salvador", "id": "slv", "image_display_url": "", "name": "slv", "title": "El Salvador"}, {"description": "", "display_name": "Eswatini", "id": "swz", "image_display_url": "", "name": "swz", "title": "Eswatini"}, {"description": "", "display_name": "Ethiopia", "id": "eth", "image_display_url": "", "name": "eth", "title": "Ethiopia"}, {"description": "", "display_name": "Fiji", "id": "fji", "image_display_url": "", "name": "fji", "title": "Fiji"}, {"description": "", "display_name": "Gabon", "id": "gab", "image_display_url": "", "name": "gab", "title": "Gabon"}, {"description": "", "display_name": "Gambia", "id": "gmb", "image_display_url": "", "name": "gmb", "title": "Gambia"}, {"description": "", "display_name": "Georgia", "id": "geo", "image_display_url": "", "name": "geo", "title": "Georgia"}, {"description": "", "display_name": "Ghana", "id": "gha", "image_display_url": "", "name": "gha", "title": "Ghana"}, {"description": "", "display_name": "Guatemala", "id": "gtm", "image_display_url": "", "name": "gtm", "title": "Guatemala"}, {"description": "", "display_name": "Guinea", "id": "gin", "image_display_url": "", "name": "gin", "title": "Guinea"}, {"description": "", "display_name": "Guinea-Bissau", "id": "gnb", "image_display_url": "", "name": "gnb", "title": "Guinea-Bissau"}, {"description": "", "display_name": "Guyana", "id": "guy", "image_display_url": "", "name": "guy", "title": "Guyana"}, {"description": "", "display_name": "Haiti", "id": "hti", "image_display_url": "", "name": "hti", "title": "Haiti"}, {"description": "", "display_name": "Honduras", "id": "hnd", "image_display_url": "", "name": "hnd", "title": "Honduras"}, {"description": "", "display_name": "India", "id": "ind", "image_display_url": "", "name": "ind", "title": "India"}, {"description": "", "display_name": "Indonesia", "id": "idn", "image_display_url": "", "name": "idn", "title": "Indonesia"}, {"description": "", "display_name": "Iraq", "id": "irq", "image_display_url": "", "name": "irq", "title": "Iraq"}, {"description": "", "display_name": "Jamaica", "id": "jam", "image_display_url": "", "name": "jam", "title": "Jamaica"}, {"description": "", "display_name": "Jordan", "id": "jor", "image_display_url": "", "name": "jor", "title": "Jordan"}, {"description": "", "display_name": "Kazakhstan", "id": "kaz", "image_display_url": "", "name": "kaz", "title": "Kazakhstan"}, {"description": "", "display_name": "Kenya", "id": "ken", "image_display_url": "", "name": "ken", "title": "Kenya"}, {"description": "", "display_name": "Kiribati", "id": "kir", "image_display_url": "", "name": "kir", "title": "Kiribati"}, {"description": "", "display_name": "Kyrgyzstan", "id": "kgz", "image_display_url": "", "name": "kgz", "title": "Kyrgyzstan"}, {"description": "", "display_name": "Lao People's Democratic Republic", "id": "lao", "image_display_url": "", "name": "lao", "title": "Lao People's Democratic Republic"}, {"description": "", "display_name": "Lesotho", "id": "lso", "image_display_url": "", "name": "lso", "title": "Lesotho"}, {"description": "", "display_name": "Liberia", "id": "lbr", "image_display_url": "", "name": "lbr", "title": "Liberia"}, {"description": "", "display_name": "Libya", "id": "lby", "image_display_url": "", "name": "lby", "title": "Libya"}, {"description": "", "display_name": "Madagascar", "id": "mdg", "image_display_url": "", "name": "mdg", "title": "Madagascar"}, {"description": "", "display_name": "Malawi", "id": "mwi", "image_display_url": "", "name": "mwi", "title": "Malawi"}, {"description": "", "display_name": "Maldives", "id": "mdv", "image_display_url": "", "name": "mdv", "title": "Maldives"}, {"description": "", "display_name": "Mali", "id": "mli", "image_display_url": "", "name": "mli", "title": "Mali"}, {"description": "", "display_name": "Mauritania", "id": "mrt", "image_display_url": "", "name": "mrt", "title": "Mauritania"}, {"description": "", "display_name": "Mexico", "id": "mex", "image_display_url": "", "name": "mex", "title": "Mexico"}, {"description": "", "display_name": "Mongolia", "id": "mng", "image_display_url": "", "name": "mng", "title": "Mongolia"}, {"description": "", "display_name": "Montenegro", "id": "mne", "image_display_url": "", "name": "mne", "title": "Montenegro"}, {"description": "", "display_name": "Morocco", "id": "mar", "image_display_url": "", "name": "mar", "title": "Morocco"}, {"description": "", "display_name": "Mozambique", "id": "moz", "image_display_url": "", "name": "moz", "title": "Mozambique"}, {"description": "", "display_name": "Myanmar", "id": "mmr", "image_display_url": "", "name": "mmr", "title": "Myanmar"}, {"description": "", "display_name": "Namibia", "id": "nam", "image_display_url": "", "name": "nam", "title": "Namibia"}, {"description": "", "display_name": "Nepal", "id": "npl", "image_display_url": "", "name": "npl", "title": "Nepal"}, {"description": "", "display_name": "Nicaragua", "id": "nic", "image_display_url": "", "name": "nic", "title": "Nicaragua"}, {"description": "", "display_name": "Niger", "id": "ner", "image_display_url": "", "name": "ner", "title": "Niger"}, {"description": "", "display_name": "Nigeria", "id": "nga", "image_display_url": "", "name": "nga", "title": "Nigeria"}, {"description": "", "display_name": "North Macedonia", "id": "mkd", "image_display_url": "", "name": "mkd", "title": "North Macedonia"}, {"description": "", "display_name": "Pakistan", "id": "pak", "image_display_url": "", "name": "pak", "title": "Pakistan"}, {"description": "", "display_name": "Papua New Guinea", "id": "png", "image_display_url": "", "name": "png", "title": "Papua New Guinea"}, {"description": "", "display_name": "Paraguay", "id": "pry", "image_display_url": "", "name": "pry", "title": "Paraguay"}, {"description": "", "display_name": "Peru", "id": "per", "image_display_url": "", "name": "per", "title": "Peru"}, {"description": "", "display_name": "Philippines", "id": "phl", "image_display_url": "", "name": "phl", "title": "Philippines"}, {"description": "", "display_name": "Republic of Moldova", "id": "mda", "image_display_url": "", "name": "mda", "title": "Republic of Moldova"}, {"description": "", "display_name": "Rwanda", "id": "rwa", "image_display_url": "", "name": "rwa", "title": "Rwanda"}, {"description": "", "display_name": "Saint Lucia", "id": "lca", "image_display_url": "", "name": "lca", "title": "Saint Lucia"}, {"description": "", "display_name": "Samoa", "id": "wsm", "image_display_url": "", "name": "wsm", "title": "Samoa"}, {"description": "", "display_name": "Sao Tome and Principe", "id": "stp", "image_display_url": "", "name": "stp", "title": "Sao Tome and Principe"}, {"description": "", "display_name": "Senegal", "id": "sen", "image_display_url": "", "name": "sen", "title": "Senegal"}, {"description": "", "display_name": "Serbia", "id": "srb", "image_display_url": "", "name": "srb", "title": "Serbia"}, {"description": "", "display_name": "Seychelles", "id": "syc", "image_display_url": "", "name": "syc", "title": "Seychelles"}, {"description": "", "display_name": "Sierra Leone", "id": "sle", "image_display_url": "", "name": "sle", "title": "Sierra Leone"}, {"description": "", "display_name": "South Africa", "id": "zaf", "image_display_url": "", "name": "zaf", "title": "South Africa"}, {"description": "", "display_name": "Sri Lanka", "id": "lka", "image_display_url": "", "name": "lka", "title": "Sri Lanka"}, {"description": "", "display_name": "State of Palestine", "id": "pse", "image_display_url": "", "name": "pse", "title": "State of Palestine"}, {"description": "", "display_name": "Sudan", "id": "sdn", "image_display_url": "", "name": "sdn", "title": "Sudan"}, {"description": "", "display_name": "Suriname", "id": "sur", "image_display_url": "", "name": "sur", "title": "Suriname"}, {"description": "", "display_name": "Tajikistan", "id": "tjk", "image_display_url": "", "name": "tjk", "title": "Tajikistan"}, {"description": "", "display_name": "Thailand", "id": "tha", "image_display_url": "", "name": "tha", "title": "Thailand"}, {"description": "", "display_name": "Timor-Leste", "id": "86b999e4-6981-401e-b57d-e15ad5a9ec86", "image_display_url": "", "name": "tls", "title": "Timor-Leste"}, {"description": "", "display_name": "Togo", "id": "tgo", "image_display_url": "", "name": "tgo", "title": "Togo"}, {"description": "", "display_name": "Tonga", "id": "ton", "image_display_url": "", "name": "ton", "title": "Tonga"}, {"description": "", "display_name": "Trinidad and Tobago", "id": "tto", "image_display_url": "", "name": "tto", "title": "Trinidad and Tobago"}, {"description": "", "display_name": "Tunisia", "id": "tun", "image_display_url": "", "name": "tun", "title": "Tunisia"}, {"description": "", "display_name": "Turkmenistan", "id": "tkm", "image_display_url": "", "name": "tkm", "title": "Turkmenistan"}, {"description": "", "display_name": "Tuvalu", "id": "tuv", "image_display_url": "", "name": "tuv", "title": "Tuvalu"}, {"description": "", "display_name": "Uganda", "id": "uga", "image_display_url": "", "name": "uga", "title": "Uganda"}, {"description": "", "display_name": "Ukraine", "id": "ukr", "image_display_url": "", "name": "ukr", "title": "Ukraine"}, {"description": "", "display_name": "United Republic of Tanzania", "id": "tza", "image_display_url": "", "name": "tza", "title": "United Republic of Tanzania"}, {"description": "", "display_name": "Uzbekistan", "id": "uzb", "image_display_url": "", "name": "uzb", "title": "Uzbekistan"}, {"description": "", "display_name": "Viet Nam", "id": "vnm", "image_display_url": "", "name": "vnm", "title": "Viet Nam"}, {"description": "", "display_name": "Yemen", "id": "yem", "image_display_url": "", "name": "yem", "title": "Yemen"}, {"description": "", "display_name": "Zambia", "id": "zmb", "image_display_url": "", "name": "zmb", "title": "Zambia"}, {"description": "", "display_name": "Zimbabwe", "id": "zwe", "image_display_url": "", "name": "zwe", "title": "Zimbabwe"}], "tags": [{"display_name": "development", "id": "3be50db2-69e2-406f-83b8-195598d0c0d5", "name": "development", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "education", "id": "111f9068-6270-4dbd-a2a9-b4d69ee1735b", "name": "education", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "health", "id": "26fe3d20-9de7-436b-b47a-4f7f2e4547d0", "name": "health", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "hxl", "id": "a0fbb23a-6aad-4ccc-8062-e9ef9f20e5d2", "name": "hxl", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "indicators", "id": "08dade96-0bf4-4248-9d9f-421f7b844e53", "name": "indicators", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "mortality", "id": "87a19f57-52b9-4f70-b23e-138e44bf3a81", "name": "mortality", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "nutrition", "id": "5cd44eef-f868-47d8-afb4-7d7d63154533", "name": "nutrition", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "poverty", "id": "c3544ec4-753e-4c1b-9cd6-942fb689fab5", "name": "poverty", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "socioeconomics", "id": "a64218ff-64ff-4777-a664-6b0a331ab605", "name": "socioeconomics", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "sustainable development goals-sdg", "id": "570d5718-b98f-46af-ac89-2b6f49fa9ed1", "name": "sustainable development goals-sdg", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "water sanitation and hygiene-wash", "id": "5a4f7135-daaf-4c82-985f-e0bb443fdb94", "name": "water sanitation and hygiene-wash", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}], "relationships_as_subject": [], "relationships_as_object": [], "is_fresh": true, "update_status": "fresh", "x_resource_grouping": [], "resources": [{"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-05T12:48:50.090762", "datastore_active": false, "description": "This resource contains standardised MPI estimates by admin one unit and also shows the proportion of people who are MPI poor and experience deprivations in each of the indicators by admin one unit.", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv", "format": "CSV", "fs_check_info": "{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-11-18T23:21:46.771061\"}", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv", "id": "ef20310e-2821-4aa9-98a8-1950f45f10d0", "last_modified": "2024-11-18T23:21:47.352312", "metadata_modified": "2024-11-18T23:21:54.523667", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "Global MPI and Partial Indices", "originalHash": "8750915", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "pii": "false", "position": 0, "resource_type": "file.upload", "size": 233564, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/ef20310e-2821-4aa9-98a8-1950f45f10d0/download/global_mpi.csv", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-05T12:48:51.907527", "datastore_active": false, "description": "This resource contains standardised MPI estimates and their changes over time by admin one unit and also shows the proportion of people who are MPI poor and experience deprivations in each of the indicators by admin one unit.", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv", "format": "CSV", "fs_check_info": "{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-11-18T23:21:46.771071\"}", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv", "id": "7c131db3-a172-4280-b37a-85f678192fbe", "last_modified": "2024-11-18T23:21:47.653979", "metadata_modified": "2024-11-18T23:21:54.523898", "microdata": false, "mimetype": "text/csv", "mimetype_inner": null, "name": "Global MPI Trends Over Time", "originalHash": "8750915", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "pii": "false", "position": 1, "resource_type": "file.upload", "size": 518481, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/7c131db3-a172-4280-b37a-85f678192fbe/download/global_mpi_trends.csv", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-18T23:21:48.596637", "datastore_active": false, "description": "This table shows the MPI and its partial indices", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/national-results-mpi.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-11-18T23:21:46.771077\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-11-18T23:21:53.949780\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/national-results-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"1.1 National MPI Results\", \"is_hidden\": false, \"nrows\": 131, \"ncols\": 22, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"1679a7027ff17c732ee9b028b91b02f8\", \"hxl_header_hash\": null, \"headers\": [\"Table 1.1 Global MPI results by 112 countries\"], \"hxl_headers\": null}, {\"name\": \"1.2 Censored Headcounts\", \"is_hidden\": false, \"nrows\": 124, \"ncols\": 19, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"69ac39b091026658209cd312868fc55f\", \"hxl_header_hash\": null, \"headers\": [\"Table 1.2 Censored headcount ratios by country\"], \"hxl_headers\": null}, {\"name\": \"1.3 Contribut'n of Deprivations\", \"is_hidden\": false, \"nrows\": 124, \"ncols\": 22, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"8ea0ed17d61634f3a5793e63a7234256\", \"hxl_header_hash\": null, \"headers\": [\"Table 1.3 Contribution of deprivations to overall poverty by country\"], \"hxl_headers\": null}, {\"name\": \"1.4 MPI Results & Compl. Data\", \"is_hidden\": false, \"nrows\": 129, \"ncols\": 21, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"fd1474039df5f8c58e1479cc9be78ac2\", \"hxl_header_hash\": null, \"headers\": [\"Table 1.4 MPI results and other estimates of monetary poverty and other development indicators\"], \"hxl_headers\": null}, {\"name\": \"1.5 SEs & CIs\", \"is_hidden\": false, \"nrows\": 125, \"ncols\": 17, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"83aeb66c6150605a1307738da849fb90\", \"hxl_header_hash\": null, \"headers\": [\"Table 1.5 Standard errors and confidence intervals\"], \"hxl_headers\": null}, {\"name\": \"1.6 Uncensored Headcounts\", \"is_hidden\": false, \"nrows\": 124, \"ncols\": 19, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"4a3df40c8ad9af48aeecf8f41b030906\", \"hxl_header_hash\": null, \"headers\": [\"Table 1.6 Uncensored headcount ratios by country\"], \"hxl_headers\": null}, {\"name\": \"1.7 Sample Size & Non-Response\", \"is_hidden\": false, \"nrows\": 125, \"ncols\": 20, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"4bcade8b9d7ccddf3a9718ce2c5534d6\", \"hxl_header_hash\": null, \"headers\": [\"Table 1.7 Sample sizes and non-response rates\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/national-results-mpi.xlsx", "id": "2b59362a-0c67-4e8b-bb78-b7aaf3a183fd", "last_modified": "2024-11-18T23:21:47.818082", "metadata_modified": "2024-11-18T23:21:54.524076", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MPI and Partial Indices National Database", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "position": 2, "resource_type": "file.upload", "size": 211605, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2b59362a-0c67-4e8b-bb78-b7aaf3a183fd/download/national-results-mpi.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-18T23:21:48.596641", "datastore_active": false, "description": "This table shows the MPI and its partial indices disaggregated by subnational regions", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-11-18T23:21:46.771082\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-11-18T23:21:55.497212\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"5.1 MPI Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 21, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"75c70fe349c6b79a23d6374902017ede\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.1 MPI results by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.2 Censored Headcounts Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 27, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"3dfdb4d3e213fbf61cf057e71068a69e\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.2 Censored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.3 Contribution Region\", \"is_hidden\": false, \"nrows\": 1373, \"ncols\": 30, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"c09942d08a0a75cae304d0c33eab0caf\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.3 Contribution of deprivations to the MPI, by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.4 SEs & CIs Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 24, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ca8911a4370f8083f48fa8b08977bb98\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.4 Standard errors and confidence intervals for subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.5 Uncensored H Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 26, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"26ae266c604e513253c5ffe19067a4a1\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.5 Uncensored headcount ratios by subnational regions\"], \"hxl_headers\": null}, {\"name\": \"5.6 Sample Sizes Region\", \"is_hidden\": false, \"nrows\": 1372, \"ncols\": 10, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"6e175d8337265db16e045c495aebdcfb\", \"hxl_header_hash\": null, \"headers\": [\"Table 5.6 Sample sizes and non-response rates by subnational regions\"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx", "id": "45b18fbb-ab0d-4f54-ae23-c078f1eccf25", "last_modified": "2024-11-18T23:21:48.003461", "metadata_modified": "2024-11-18T23:21:56.190971", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "MPI and Partial Indices Subnational Database", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "position": 3, "resource_type": "file.upload", "size": 1936328, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/45b18fbb-ab0d-4f54-ae23-c078f1eccf25/download/subnational-results-mpi.xlsx", "url_type": "upload"}, {"alt_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-11-18T23:21:48.596643", "datastore_active": false, "description": "This table shows global mpi harmonized level estimates and their changes over time", "download_url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx", "format": "XLSX", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2024-11-18T23:21:46.771086\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2024-11-18T23:22:02.153635\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx\", \"format\": \"XLSX\", \"sheets\": [{\"name\": \"readme\", \"is_hidden\": false, \"nrows\": 4, \"ncols\": 1, \"has_merged_cells\": false, \"is_hxlated\": false, \"header_hash\": null, \"hxl_header_hash\": null, \"headers\": [], \"hxl_headers\": null}, {\"name\": \"6.1 Harmonised MPI\", \"is_hidden\": false, \"nrows\": 162, \"ncols\": 110, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"d38dd290da893e1381feaa007aa01b6d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.1 Harmonised MPI results by country and survey period \"], \"hxl_headers\": null}, {\"name\": \"6.2 Harmonised MPI Age\", \"is_hidden\": false, \"nrows\": 897, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"f9719e7eab69ecf4ec05614bc041ad13\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.2 Harmonised MPI by age group \"], \"hxl_headers\": null}, {\"name\": \"6.3 Harmonised MPI Area\", \"is_hidden\": false, \"nrows\": 311, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"51e19b5db95463a685168ef14e0db8cb\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.3 Harmonised MPI by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.4 Harmonised MPI Region\", \"is_hidden\": false, \"nrows\": 1495, \"ncols\": 113, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"171f338ddda10fb3073f2e8d7e60f267\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.4 Harmonised MPI by subnational regions \"], \"hxl_headers\": null}, {\"name\": \"6.5 Uncensored hd & stats\", \"is_hidden\": false, \"nrows\": 160, \"ncols\": 90, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ea027c617d2209b98b959ae03eface78\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.5 Harmonised uncensored headcount ratios and sample details by country \"], \"hxl_headers\": null}, {\"name\": \"6.6 Uncensored hd & stats Age\", \"is_hidden\": false, \"nrows\": 895, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"ddaae4cff8f35f28e0774ef575649aec\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.6 Harmonised uncensored headcount ratios and sample details by age group \"], \"hxl_headers\": null}, {\"name\": \"6.7 Uncensored hd & stats Area \", \"is_hidden\": false, \"nrows\": 309, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"9241f49cd24be09d6120ce134190f111\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.7 Harmonised uncensored headcount ratios and sample details by rural and urban areas \"], \"hxl_headers\": null}, {\"name\": \"6.8Uncensored hd & stats Region\", \"is_hidden\": false, \"nrows\": 1493, \"ncols\": 91, \"has_merged_cells\": true, \"is_hxlated\": false, \"header_hash\": \"2f2ac88b2196261b811a9bca010e787d\", \"hxl_header_hash\": null, \"headers\": [\"Table 6.8 Harmonised uncensored headcount ratios and sample details by subnational regions \"], \"hxl_headers\": null}]}}]", "hash": "", "hdx_rel_url": "/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx", "id": "2359037c-3cef-46da-a608-db360cb18b41", "last_modified": "2024-11-18T23:21:48.357854", "metadata_modified": "2024-11-18T23:22:02.671206", "microdata": false, "mimetype": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "mimetype_inner": null, "name": "Trends Over Time MPI Database", "package_id": "42b16840-3a56-4a20-9314-7aa171f1136c", "position": 4, "resource_type": "file.upload", "size": 6646282, "state": "active", "url": "https://data.humdata.org/dataset/42b16840-3a56-4a20-9314-7aa171f1136c/resource/2359037c-3cef-46da-a608-db360cb18b41/download/trends-over-time-mpi.xlsx", "url_type": "upload"}]} diff --git a/tests/fixtures/input/hdx-hapi-poverty-rate.json b/tests/fixtures/input/hdx-hapi-poverty-rate.json new file mode 100644 index 00000000..97a21b34 --- /dev/null +++ b/tests/fixtures/input/hdx-hapi-poverty-rate.json @@ -0,0 +1 @@ +{"archived": false, "batch": "fde1f8b4-1b11-48ae-9032-e002ce601b54", "caveats": "HDX HAPI is refreshed daily, but the source datasets may have different update schedules. Please refer to the source datasets for each subcategory to verify their specific update frequency.\n", "creator_user_id": "1a008a13-52b1-4326-a9ea-aa541372577c", "data_update_frequency": "365", "dataset_date": "[2001-01-01T00:00:00 TO 2023-12-31T23:59:59]", "dataset_preview": "no_preview", "dataset_source": "Oxford Poverty & Human Development Initiative", "due_date": "2026-02-24T02:47:06", "has_geodata": false, "has_quickcharts": false, "has_showcases": false, "id": "5308e99f-5e32-4bdf-a1ff-7b140326293d", "is_requestdata_type": false, "isopen": false, "last_modified": "2025-02-24T02:47:06.545856", "license_id": "other-pd-nr", "license_title": "Public Domain / No Restrictions", "maintainer": "196196be-6037-4488-8b71-d786adf4c081", "maintainer_email": null, "metadata_created": "2024-10-24T21:32:56.963830", "metadata_modified": "2025-02-24T02:47:09.647088", "methodology": "Registry", "name": "hdx-hapi-poverty-rate", "notes": "This dataset contains data obtained from the\n[HDX Humanitarian API](https://hapi.humdata.org/) (HDX HAPI),\nwhich provides standardized humanitarian indicators designed\nfor seamless interoperability from multiple sources.\nThe data facilitates automated workflows and visualizations\nto support humanitarian decision making.\nFor more information, please see the HDX HAPI\n[landing page](https://data.humdata.org/hapi)\nand\n[documentation](https://hdx-hapi.readthedocs.io/en/latest/).\n", "num_resources": 1, "num_tags": 5, "organization": {"id": "40d10ece-49de-4791-9aed-e164f1d16dd1", "name": "hdx-hapi", "title": "HDX Humanitarian API Data", "type": "organization", "description": "Contains downloadable CSVs of data obtained from the HDX Humanitarian API (HDX HAPI) for users who prefer not to use APIs. HDX HAPI Data is standardized for seamless interoperability from multiple sources. The data facilitates automated workflows and visualizations to support humanitarian decision making. For more information, please see the HDX HAPI landing page (https://data.humdata.org/hapi) and documentation (https://hdx-hapi.readthedocs.io/en/latest/).", "image_url": "", "created": "2024-12-16T09:25:15.966576", "is_organization": true, "approval_status": "approved", "state": "active"}, "overdue_date": "2026-04-25T02:47:06", "owner_org": "40d10ece-49de-4791-9aed-e164f1d16dd1", "package_creator": "hdx_bot_scrapers", "pageviews_last_14_days": 111, "private": false, "qa_completed": false, "solr_additions": "{\"countries\": [\"Afghanistan\", \"Algeria\", \"Benin\", \"Burkina Faso\", \"Burundi\", \"Cambodia\", \"Cameroon\", \"Central African Republic\", \"Chad\", \"Colombia\", \"Comoros\", \"Congo\", \"Costa Rica\", \"Cuba\", \"Democratic Republic of the Congo\", \"Dominican Republic\", \"Ecuador\", \"Egypt\", \"El Salvador\", \"Eswatini\", \"Ethiopia\", \"Fiji\", \"Gabon\", \"Gambia\", \"Georgia\", \"Ghana\", \"Guatemala\", \"Guinea\", \"Guinea-Bissau\", \"Guyana\", \"Haiti\", \"Honduras\", \"India\", \"Indonesia\", \"Iraq\", \"Jamaica\", \"Jordan\", \"Kazakhstan\", \"Kenya\", \"Kiribati\", \"Kyrgyzstan\", \"Lao People's Democratic Republic\", \"Lesotho\", \"Liberia\", \"Libya\", \"Madagascar\", \"Malawi\", \"Maldives\", \"Mali\", \"Mauritania\", \"Mexico\", \"Mongolia\", \"Montenegro\", \"Morocco\", \"Mozambique\", \"Myanmar\", \"Namibia\", \"Nepal\", \"Nicaragua\", \"Niger\", \"Nigeria\", \"North Macedonia\", \"Pakistan\", \"Papua New Guinea\", \"Paraguay\", \"Peru\", \"Philippines\", \"Republic of Moldova\", \"Rwanda\", \"Saint Lucia\", \"Samoa\", \"Sao Tome and Principe\", \"Senegal\", \"Serbia\", \"Seychelles\", \"Sierra Leone\", \"South Africa\", \"Sri Lanka\", \"State of Palestine\", \"Sudan\", \"Suriname\", \"Tajikistan\", \"Thailand\", \"Timor-Leste\", \"Togo\", \"Tonga\", \"Trinidad and Tobago\", \"Tunisia\", \"Turkmenistan\", \"Tuvalu\", \"Uganda\", \"Ukraine\", \"United Republic of Tanzania\", \"Uzbekistan\", \"Viet Nam\", \"Yemen\", \"Zambia\", \"Zimbabwe\"]}", "state": "active", "subnational": "1", "title": "HDX HAPI - Food Security, Nutrition & Poverty: Poverty Rate", "total_res_downloads": 393, "type": "dataset", "updated_by_script": "HDX Scraper: OPHI (2025-02-24T02:47:05.927964)", "url": null, "version": null, "groups": [{"description": "", "display_name": "Afghanistan", "id": "afg", "image_display_url": "", "name": "afg", "title": "Afghanistan"}, {"description": "", "display_name": "Algeria", "id": "dza", "image_display_url": "", "name": "dza", "title": "Algeria"}, {"description": "", "display_name": "Benin", "id": "ben", "image_display_url": "", "name": "ben", "title": "Benin"}, {"description": "", "display_name": "Burkina Faso", "id": "bfa", "image_display_url": "", "name": "bfa", "title": "Burkina Faso"}, {"description": "", "display_name": "Burundi", "id": "bdi", "image_display_url": "", "name": "bdi", "title": "Burundi"}, {"description": "", "display_name": "Cambodia", "id": "khm", "image_display_url": "", "name": "khm", "title": "Cambodia"}, {"description": "", "display_name": "Cameroon", "id": "cmr", "image_display_url": "", "name": "cmr", "title": "Cameroon"}, {"description": "", "display_name": "Central African Republic", "id": "caf", "image_display_url": "", "name": "caf", "title": "Central African Republic"}, {"description": "", "display_name": "Chad", "id": "tcd", "image_display_url": "", "name": "tcd", "title": "Chad"}, {"description": "", "display_name": "Colombia", "id": "col", "image_display_url": "", "name": "col", "title": "Colombia"}, {"description": "", "display_name": "Comoros", "id": "com", "image_display_url": "", "name": "com", "title": "Comoros"}, {"description": "", "display_name": "Congo", "id": "cog", "image_display_url": "", "name": "cog", "title": "Congo"}, {"description": "", "display_name": "Costa Rica", "id": "cri", "image_display_url": "", "name": "cri", "title": "Costa Rica"}, {"description": "", "display_name": "Cuba", "id": "cub", "image_display_url": "", "name": "cub", "title": "Cuba"}, {"description": "", "display_name": "Democratic Republic of the Congo", "id": "cod", "image_display_url": "", "name": "cod", "title": "Democratic Republic of the Congo"}, {"description": "", "display_name": "Dominican Republic", "id": "dom", "image_display_url": "", "name": "dom", "title": "Dominican Republic"}, {"description": "", "display_name": "Ecuador", "id": "ecu", "image_display_url": "", "name": "ecu", "title": "Ecuador"}, {"description": "", "display_name": "Egypt", "id": "egy", "image_display_url": "", "name": "egy", "title": "Egypt"}, {"description": "", "display_name": "El Salvador", "id": "slv", "image_display_url": "", "name": "slv", "title": "El Salvador"}, {"description": "", "display_name": "Eswatini", "id": "swz", "image_display_url": "", "name": "swz", "title": "Eswatini"}, {"description": "", "display_name": "Ethiopia", "id": "eth", "image_display_url": "", "name": "eth", "title": "Ethiopia"}, {"description": "", "display_name": "Fiji", "id": "fji", "image_display_url": "", "name": "fji", "title": "Fiji"}, {"description": "", "display_name": "Gabon", "id": "gab", "image_display_url": "", "name": "gab", "title": "Gabon"}, {"description": "", "display_name": "Gambia", "id": "gmb", "image_display_url": "", "name": "gmb", "title": "Gambia"}, {"description": "", "display_name": "Georgia", "id": "geo", "image_display_url": "", "name": "geo", "title": "Georgia"}, {"description": "", "display_name": "Ghana", "id": "gha", "image_display_url": "", "name": "gha", "title": "Ghana"}, {"description": "", "display_name": "Guatemala", "id": "gtm", "image_display_url": "", "name": "gtm", "title": "Guatemala"}, {"description": "", "display_name": "Guinea", "id": "gin", "image_display_url": "", "name": "gin", "title": "Guinea"}, {"description": "", "display_name": "Guinea-Bissau", "id": "gnb", "image_display_url": "", "name": "gnb", "title": "Guinea-Bissau"}, {"description": "", "display_name": "Guyana", "id": "guy", "image_display_url": "", "name": "guy", "title": "Guyana"}, {"description": "", "display_name": "Haiti", "id": "hti", "image_display_url": "", "name": "hti", "title": "Haiti"}, {"description": "", "display_name": "Honduras", "id": "hnd", "image_display_url": "", "name": "hnd", "title": "Honduras"}, {"description": "", "display_name": "India", "id": "ind", "image_display_url": "", "name": "ind", "title": "India"}, {"description": "", "display_name": "Indonesia", "id": "idn", "image_display_url": "", "name": "idn", "title": "Indonesia"}, {"description": "", "display_name": "Iraq", "id": "irq", "image_display_url": "", "name": "irq", "title": "Iraq"}, {"description": "", "display_name": "Jamaica", "id": "jam", "image_display_url": "", "name": "jam", "title": "Jamaica"}, {"description": "", "display_name": "Jordan", "id": "jor", "image_display_url": "", "name": "jor", "title": "Jordan"}, {"description": "", "display_name": "Kazakhstan", "id": "kaz", "image_display_url": "", "name": "kaz", "title": "Kazakhstan"}, {"description": "", "display_name": "Kenya", "id": "ken", "image_display_url": "", "name": "ken", "title": "Kenya"}, {"description": "", "display_name": "Kiribati", "id": "kir", "image_display_url": "", "name": "kir", "title": "Kiribati"}, {"description": "", "display_name": "Kyrgyzstan", "id": "kgz", "image_display_url": "", "name": "kgz", "title": "Kyrgyzstan"}, {"description": "", "display_name": "Lao People's Democratic Republic", "id": "lao", "image_display_url": "", "name": "lao", "title": "Lao People's Democratic Republic"}, {"description": "", "display_name": "Lesotho", "id": "lso", "image_display_url": "", "name": "lso", "title": "Lesotho"}, {"description": "", "display_name": "Liberia", "id": "lbr", "image_display_url": "", "name": "lbr", "title": "Liberia"}, {"description": "", "display_name": "Libya", "id": "lby", "image_display_url": "", "name": "lby", "title": "Libya"}, {"description": "", "display_name": "Madagascar", "id": "mdg", "image_display_url": "", "name": "mdg", "title": "Madagascar"}, {"description": "", "display_name": "Malawi", "id": "mwi", "image_display_url": "", "name": "mwi", "title": "Malawi"}, {"description": "", "display_name": "Maldives", "id": "mdv", "image_display_url": "", "name": "mdv", "title": "Maldives"}, {"description": "", "display_name": "Mali", "id": "mli", "image_display_url": "", "name": "mli", "title": "Mali"}, {"description": "", "display_name": "Mauritania", "id": "mrt", "image_display_url": "", "name": "mrt", "title": "Mauritania"}, {"description": "", "display_name": "Mexico", "id": "mex", "image_display_url": "", "name": "mex", "title": "Mexico"}, {"description": "", "display_name": "Mongolia", "id": "mng", "image_display_url": "", "name": "mng", "title": "Mongolia"}, {"description": "", "display_name": "Montenegro", "id": "mne", "image_display_url": "", "name": "mne", "title": "Montenegro"}, {"description": "", "display_name": "Morocco", "id": "mar", "image_display_url": "", "name": "mar", "title": "Morocco"}, {"description": "", "display_name": "Mozambique", "id": "moz", "image_display_url": "", "name": "moz", "title": "Mozambique"}, {"description": "", "display_name": "Myanmar", "id": "mmr", "image_display_url": "", "name": "mmr", "title": "Myanmar"}, {"description": "", "display_name": "Namibia", "id": "nam", "image_display_url": "", "name": "nam", "title": "Namibia"}, {"description": "", "display_name": "Nepal", "id": "npl", "image_display_url": "", "name": "npl", "title": "Nepal"}, {"description": "", "display_name": "Nicaragua", "id": "nic", "image_display_url": "", "name": "nic", "title": "Nicaragua"}, {"description": "", "display_name": "Niger", "id": "ner", "image_display_url": "", "name": "ner", "title": "Niger"}, {"description": "", "display_name": "Nigeria", "id": "nga", "image_display_url": "", "name": "nga", "title": "Nigeria"}, {"description": "", "display_name": "North Macedonia", "id": "mkd", "image_display_url": "", "name": "mkd", "title": "North Macedonia"}, {"description": "", "display_name": "Pakistan", "id": "pak", "image_display_url": "", "name": "pak", "title": "Pakistan"}, {"description": "", "display_name": "Papua New Guinea", "id": "png", "image_display_url": "", "name": "png", "title": "Papua New Guinea"}, {"description": "", "display_name": "Paraguay", "id": "pry", "image_display_url": "", "name": "pry", "title": "Paraguay"}, {"description": "", "display_name": "Peru", "id": "per", "image_display_url": "", "name": "per", "title": "Peru"}, {"description": "", "display_name": "Philippines", "id": "phl", "image_display_url": "", "name": "phl", "title": "Philippines"}, {"description": "", "display_name": "Republic of Moldova", "id": "mda", "image_display_url": "", "name": "mda", "title": "Republic of Moldova"}, {"description": "", "display_name": "Rwanda", "id": "rwa", "image_display_url": "", "name": "rwa", "title": "Rwanda"}, {"description": "", "display_name": "Saint Lucia", "id": "lca", "image_display_url": "", "name": "lca", "title": "Saint Lucia"}, {"description": "", "display_name": "Samoa", "id": "wsm", "image_display_url": "", "name": "wsm", "title": "Samoa"}, {"description": "", "display_name": "Sao Tome and Principe", "id": "stp", "image_display_url": "", "name": "stp", "title": "Sao Tome and Principe"}, {"description": "", "display_name": "Senegal", "id": "sen", "image_display_url": "", "name": "sen", "title": "Senegal"}, {"description": "", "display_name": "Serbia", "id": "srb", "image_display_url": "", "name": "srb", "title": "Serbia"}, {"description": "", "display_name": "Seychelles", "id": "syc", "image_display_url": "", "name": "syc", "title": "Seychelles"}, {"description": "", "display_name": "Sierra Leone", "id": "sle", "image_display_url": "", "name": "sle", "title": "Sierra Leone"}, {"description": "", "display_name": "South Africa", "id": "zaf", "image_display_url": "", "name": "zaf", "title": "South Africa"}, {"description": "", "display_name": "Sri Lanka", "id": "lka", "image_display_url": "", "name": "lka", "title": "Sri Lanka"}, {"description": "", "display_name": "State of Palestine", "id": "pse", "image_display_url": "", "name": "pse", "title": "State of Palestine"}, {"description": "", "display_name": "Sudan", "id": "sdn", "image_display_url": "", "name": "sdn", "title": "Sudan"}, {"description": "", "display_name": "Suriname", "id": "sur", "image_display_url": "", "name": "sur", "title": "Suriname"}, {"description": "", "display_name": "Tajikistan", "id": "tjk", "image_display_url": "", "name": "tjk", "title": "Tajikistan"}, {"description": "", "display_name": "Thailand", "id": "tha", "image_display_url": "", "name": "tha", "title": "Thailand"}, {"description": "", "display_name": "Timor-Leste", "id": "86b999e4-6981-401e-b57d-e15ad5a9ec86", "image_display_url": "", "name": "tls", "title": "Timor-Leste"}, {"description": "", "display_name": "Togo", "id": "tgo", "image_display_url": "", "name": "tgo", "title": "Togo"}, {"description": "", "display_name": "Tonga", "id": "ton", "image_display_url": "", "name": "ton", "title": "Tonga"}, {"description": "", "display_name": "Trinidad and Tobago", "id": "tto", "image_display_url": "", "name": "tto", "title": "Trinidad and Tobago"}, {"description": "", "display_name": "Tunisia", "id": "tun", "image_display_url": "", "name": "tun", "title": "Tunisia"}, {"description": "", "display_name": "Turkmenistan", "id": "tkm", "image_display_url": "", "name": "tkm", "title": "Turkmenistan"}, {"description": "", "display_name": "Tuvalu", "id": "tuv", "image_display_url": "", "name": "tuv", "title": "Tuvalu"}, {"description": "", "display_name": "Uganda", "id": "uga", "image_display_url": "", "name": "uga", "title": "Uganda"}, {"description": "", "display_name": "Ukraine", "id": "ukr", "image_display_url": "", "name": "ukr", "title": "Ukraine"}, {"description": "", "display_name": "United Republic of Tanzania", "id": "tza", "image_display_url": "", "name": "tza", "title": "United Republic of Tanzania"}, {"description": "", "display_name": "Uzbekistan", "id": "uzb", "image_display_url": "", "name": "uzb", "title": "Uzbekistan"}, {"description": "", "display_name": "Viet Nam", "id": "vnm", "image_display_url": "", "name": "vnm", "title": "Viet Nam"}, {"description": "", "display_name": "Yemen", "id": "yem", "image_display_url": "", "name": "yem", "title": "Yemen"}, {"description": "", "display_name": "Zambia", "id": "zmb", "image_display_url": "", "name": "zmb", "title": "Zambia"}, {"description": "", "display_name": "Zimbabwe", "id": "zwe", "image_display_url": "", "name": "zwe", "title": "Zimbabwe"}], "tags": [{"display_name": "education", "id": "111f9068-6270-4dbd-a2a9-b4d69ee1735b", "name": "education", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "health", "id": "26fe3d20-9de7-436b-b47a-4f7f2e4547d0", "name": "health", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "hxl", "id": "a0fbb23a-6aad-4ccc-8062-e9ef9f20e5d2", "name": "hxl", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "indicators", "id": "08dade96-0bf4-4248-9d9f-421f7b844e53", "name": "indicators", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}, {"display_name": "poverty", "id": "c3544ec4-753e-4c1b-9cd6-942fb689fab5", "name": "poverty", "state": "active", "vocabulary_id": "b891512e-9516-4bf5-962a-7a289772a2a1"}], "relationships_as_subject": [], "relationships_as_object": [], "is_fresh": true, "update_status": "fresh", "x_resource_grouping": [], "resources": [{"alt_url": "https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/", "cache_last_updated": null, "cache_url": null, "created": "2024-10-24T21:32:56.969983", "dataset_preview_enabled": false, "datastore_active": false, "description": "Poverty Rate data from HDX HAPI, please see [the documentation](https://hdx-hapi.readthedocs.io/en/latest/data_usage_guides/food_security_nutrition_and_poverty/#poverty-rate) for more information", "download_url": "https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv", "format": "CSV", "fs_check_info": "[{\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-20T08:41:51.783030\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-20T08:41:55.103252\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 3168, \"ncols\": 14, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"4330e6305351716df4c7dcd5be4fd8b4\", \"hxl_header_hash\": \"ed019a14b302e350648ae2423910e61c\", \"headers\": [\"location_code\", \"has_hrp\", \"in_gho\", \"provider_admin1_name\", \"admin1_code\", \"admin1_name\", \"admin_level\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#meta+has_hrp\", \"#meta+in_gho\", \"#adm1+name+provider\", \"#adm1+code\", \"#adm1+name\", \"#adm+level\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-21T08:42:53.231687\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-21T08:42:56.309019\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 3168, \"ncols\": 14, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"4330e6305351716df4c7dcd5be4fd8b4\", \"hxl_header_hash\": \"ed019a14b302e350648ae2423910e61c\", \"headers\": [\"location_code\", \"has_hrp\", \"in_gho\", \"provider_admin1_name\", \"admin1_code\", \"admin1_name\", \"admin_level\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#meta+has_hrp\", \"#meta+in_gho\", \"#adm1+name+provider\", \"#adm1+code\", \"#adm1+name\", \"#adm+level\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-22T08:42:34.834244\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-22T08:42:38.007593\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 3168, \"ncols\": 14, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"4330e6305351716df4c7dcd5be4fd8b4\", \"hxl_header_hash\": \"ed019a14b302e350648ae2423910e61c\", \"headers\": [\"location_code\", \"has_hrp\", \"in_gho\", \"provider_admin1_name\", \"admin1_code\", \"admin1_name\", \"admin_level\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#meta+has_hrp\", \"#meta+in_gho\", \"#adm1+name+provider\", \"#adm1+code\", \"#adm1+name\", \"#adm+level\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-23T08:42:44.864297\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-23T08:42:48.001656\", \"sheet_changes\": [], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 3168, \"ncols\": 14, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"4330e6305351716df4c7dcd5be4fd8b4\", \"hxl_header_hash\": \"ed019a14b302e350648ae2423910e61c\", \"headers\": [\"location_code\", \"has_hrp\", \"in_gho\", \"provider_admin1_name\", \"admin1_code\", \"admin1_name\", \"admin_level\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\"], \"hxl_headers\": [\"#country+code\", \"#meta+has_hrp\", \"#meta+in_gho\", \"#adm1+name+provider\", \"#adm1+code\", \"#adm1+name\", \"#adm+level\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\"]}]}}, {\"state\": \"processing\", \"message\": \"The processing of the file structure check has started\", \"timestamp\": \"2025-02-24T02:47:06.030724\"}, {\"state\": \"success\", \"message\": \"File structure check completed\", \"timestamp\": \"2025-02-24T02:47:09.147723\", \"sheet_changes\": [{\"name\": \"__DEFAULT__\", \"event_type\": \"spreadsheet-sheet-changed\", \"changed_fields\": [{\"field\": \"ncols\", \"new_value\": 16, \"new_display_value\": 16, \"old_value\": 14, \"old_display_value\": 14}, {\"field\": \"hxl_header_hash\", \"new_value\": \"2db16e49fcd3b5217b5f924dd0d604f9\", \"new_display_value\": \"2db16e49fcd3b5217b5f924dd0d604f9\", \"old_value\": \"ed019a14b302e350648ae2423910e61c\", \"old_display_value\": \"ed019a14b302e350648ae2423910e61c\"}, {\"field\": \"header_hash\", \"new_value\": \"d8b7d46363e0ab7bd6fd54fdc449be4c\", \"new_display_value\": \"d8b7d46363e0ab7bd6fd54fdc449be4c\", \"old_value\": \"4330e6305351716df4c7dcd5be4fd8b4\", \"old_display_value\": \"4330e6305351716df4c7dcd5be4fd8b4\"}]}], \"hxl_proxy_response\": {\"url_or_filename\": \"https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv\", \"format\": \"CSV\", \"sheets\": [{\"name\": \"__DEFAULT__\", \"nrows\": 3168, \"ncols\": 16, \"is_hidden\": false, \"has_merged_cells\": false, \"is_hxlated\": true, \"header_hash\": \"d8b7d46363e0ab7bd6fd54fdc449be4c\", \"hxl_header_hash\": \"2db16e49fcd3b5217b5f924dd0d604f9\", \"headers\": [\"location_code\", \"has_hrp\", \"in_gho\", \"provider_admin1_name\", \"admin1_code\", \"admin1_name\", \"admin_level\", \"mpi\", \"headcount_ratio\", \"intensity_of_deprivation\", \"vulnerable_to_poverty\", \"in_severe_poverty\", \"reference_period_start\", \"reference_period_end\", \"dataset_hdx_id\", \"resource_hdx_id\"], \"hxl_headers\": [\"#country+code\", \"#meta+has_hrp\", \"#meta+in_gho\", \"#adm1+name+provider\", \"#adm1+code\", \"#adm1+name\", \"#adm+level\", \"#indicator+mpi\", \"#indicator+headcount_ratio\", \"#indicator+intensity_of_deprivation\", \"#indicator+vulnerable_to_poverty\", \"#indicator+in_severe_poverty\", \"#date+start\", \"#date+end\", \"#meta+dataset_id\", \"#meta+resource_id\"]}]}}]", "hash": "", "hdx_rel_url": "/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv", "id": "66fbe38c-ebb9-40dc-8866-fe2e977a1b1a", "last_modified": "2025-02-24T02:47:06.545856", "metadata_modified": "2025-02-24T02:47:09.683677", "microdata": false, "mimetype": null, "mimetype_inner": null, "name": "Global Food Security, Nutrition & Poverty: Poverty Rate", "package_id": "5308e99f-5e32-4bdf-a1ff-7b140326293d", "position": 0, "resource_type": "file.upload", "size": 618817, "state": "active", "url": "https://data.humdata.org/dataset/5308e99f-5e32-4bdf-a1ff-7b140326293d/resource/66fbe38c-ebb9-40dc-8866-fe2e977a1b1a/download/hdx_hapi_poverty_rate_global.csv", "url_type": "upload"}]}